File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -144,8 +144,8 @@ jobs:
144
144
- name : disable git crlf conversion
145
145
run : src/ci/scripts/disable-git-crlf-conversion.sh
146
146
147
- - name : checkout submodules
148
- run : src/ci/scripts/checkout-submodules.sh
147
+ # - name: checkout submodules
148
+ # run: src/ci/scripts/checkout-submodules.sh
149
149
150
150
- name : install MinGW
151
151
run : src/ci/scripts/install-mingw.sh
@@ -173,6 +173,12 @@ 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
+ - name : show the current environment
177
+ run : src/ci/scripts/dump-environment.sh
178
+
179
+ - name : exit
180
+ run : exit 1
181
+
176
182
- name : run the build
177
183
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
178
184
run : src/ci/scripts/run-build-from-ci.sh 2>&1
Original file line number Diff line number Diff line change @@ -14,14 +14,17 @@ if isWindows && isKnownToBeMingwBuild; then
14
14
* i686* )
15
15
bits=32
16
16
mingw_archive=" ${MINGW_ARCHIVE_32} "
17
+ echo " I have 32-bits"
17
18
;;
18
19
* x86_64* )
19
20
bits=64
20
21
mingw_archive=" ${MINGW_ARCHIVE_64} "
22
+ echo " I have 64-bits"
21
23
;;
22
24
* aarch64* )
23
25
# aarch64 is a cross-compiled target. Use the x86_64
24
26
# mingw, since that's the host architecture.
27
+ echo " I should not be here"
25
28
bits=64
26
29
mingw_archive=" ${MINGW_ARCHIVE_64} "
27
30
;;
@@ -32,6 +35,9 @@ if isWindows && isKnownToBeMingwBuild; then
32
35
;;
33
36
esac
34
37
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