Skip to content

Commit 041f642

Browse files
committed
[DO NOT MERGE]
1 parent c03c38d commit 041f642

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/ci/scripts/install-mingw.sh

+7
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,25 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
99
MINGW_ARCHIVE_32="i686-14.1.0-release-posix-dwarf-msvcrt-rt_v12-rev0.7z"
1010
MINGW_ARCHIVE_64="x86_64-14.1.0-release-posix-seh-msvcrt-rt_v12-rev0.7z"
1111

12+
echo "running install-mingw.sh"
13+
1214
if isWindows && isKnownToBeMingwBuild; then
15+
echo "I am mingw on Windows"
1316
case "${CI_JOB_NAME}" in
1417
*i686*)
1518
bits=32
1619
mingw_archive="${MINGW_ARCHIVE_32}"
20+
echo "I have 32-bits"
1721
;;
1822
*x86_64*)
1923
bits=64
2024
mingw_archive="${MINGW_ARCHIVE_64}"
25+
echo "I have 64-bits"
2126
;;
2227
*aarch64*)
2328
# aarch64 is a cross-compiled target. Use the x86_64
2429
# mingw, since that's the host architecture.
30+
echo "I should not be here"
2531
bits=64
2632
mingw_archive="${MINGW_ARCHIVE_64}"
2733
;;
@@ -31,6 +37,7 @@ if isWindows && isKnownToBeMingwBuild; then
3137
exit 1
3238
;;
3339
esac
40+
exit 1
3441

3542
mingw_dir="mingw${bits}"
3643

0 commit comments

Comments
 (0)