File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,11 @@ jobs:
173
173
- name : ensure the stable version number is correct
174
174
run : src/ci/scripts/verify-stable-version-number.sh
175
175
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
+
176
181
- name : run the build
177
182
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
178
183
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
32
32
;;
33
33
esac
34
34
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
+
35
41
mingw_dir=" mingw${bits} "
36
42
37
43
curl -o mingw.7z " ${MIRRORS_BASE} /${mingw_archive} "
You can’t perform that action at this time.
0 commit comments