From 2f4d409725ad12fe7c2d7ae4b6bca72c40cf1bf2 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 13 Feb 2019 10:56:47 -0800 Subject: [PATCH 1/2] appveyor: Try using a different `sh.exe` On a suggestions from AppVeyor let's try using a different `sh.exe` and see what happens... --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index d70ad54b1c812..b8df34d705241 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -207,7 +207,9 @@ test_script: - sh src/ci/init_repo.sh . /c/cache/rustsrc - set SRC=. - set NO_CCACHE=1 - - sh src/ci/run.sh + # Try specifically using git's `sh.exe` instead of the one in PATH which is + # the msys64 sh.exe. Trying to debug rust-lang/rust#58160 + - "C:\Program Files\Git\usr\bin\sh.exe" src/ci/run.sh on_failure: # Dump crash log From 5474880d2d9484cabdf59ae44ddc2602db0c58f5 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Wed, 13 Feb 2019 13:40:56 -0600 Subject: [PATCH 2/2] Update appveyor.yml Co-Authored-By: alexcrichton --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index b8df34d705241..999898ff89a3b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -209,7 +209,7 @@ test_script: - set NO_CCACHE=1 # Try specifically using git's `sh.exe` instead of the one in PATH which is # the msys64 sh.exe. Trying to debug rust-lang/rust#58160 - - "C:\Program Files\Git\usr\bin\sh.exe" src/ci/run.sh + - "\"C:\\Program Files\\Git\\usr\\bin\\sh.exe\" src/ci/run.sh" on_failure: # Dump crash log