File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,11 @@ jobs:
173173 - name : ensure the stable version number is correct
174174 run : src/ci/scripts/verify-stable-version-number.sh
175175
176+ # Show the environment just before we run the build
177+ # This makes it easier to diagnose problems with the above install scripts.
178+ - name : show the current environment
179+ run : src/ci/scripts/dump-environment.sh
180+
176181 - name : run the build
177182 # Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
178183 run : src/ci/scripts/run-build-from-ci.sh 2>&1
Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ if isWindows && isKnownToBeMingwBuild; then
3232 ;;
3333 esac
3434
35+ # Stop /msys64/bin from being prepended to PATH by adding the bin directory manually.
36+ # Note that this intentionally uses a Windows style path instead of the msys2 path to
37+ # avoid being auto-translated into `/usr/bin`, which will not have the desired effect.
38+ msys2Path=" c:/msys64"
39+ ciCommandAddPath " ${msys2Path} /usr/bin"
40+
3541 mingw_dir=" mingw${bits} "
3642
3743 curl -o mingw.7z " ${MIRRORS_BASE} /${mingw_archive} "
You can’t perform that action at this time.
0 commit comments