File tree 4 files changed +4
-47
lines changed
4 files changed +4
-47
lines changed Original file line number Diff line number Diff line change @@ -155,9 +155,6 @@ jobs:
155
155
- name : checkout submodules
156
156
run : src/ci/scripts/checkout-submodules.sh
157
157
158
- - name : install MSYS2
159
- run : src/ci/scripts/install-msys2.sh
160
-
161
158
- name : install MinGW
162
159
run : src/ci/scripts/install-mingw.sh
163
160
Original file line number Diff line number Diff line change @@ -378,7 +378,6 @@ auto:
378
378
# We are intentionally allowing an old toolchain on this builder (and that's
379
379
# incompatible with LLVM downloads today).
380
380
NO_DOWNLOAD_CI_LLVM : 1
381
- CUSTOM_MINGW : 1
382
381
<< : *job-windows-8c
383
382
384
383
- image : x86_64-mingw
@@ -390,7 +389,6 @@ auto:
390
389
# We are intentionally allowing an old toolchain on this builder (and that's
391
390
# incompatible with LLVM downloads today).
392
391
NO_DOWNLOAD_CI_LLVM : 1
393
- CUSTOM_MINGW : 1
394
392
<< : *job-windows-8c
395
393
396
394
- image : dist-x86_64-msvc
@@ -439,7 +437,6 @@ auto:
439
437
# incompatible with LLVM downloads today).
440
438
NO_DOWNLOAD_CI_LLVM : 1
441
439
SCRIPT : python x.py dist bootstrap --include-default-paths
442
- CUSTOM_MINGW : 1
443
440
DIST_REQUIRE_ALL_TOOLS : 1
444
441
<< : *job-windows-8c
445
442
@@ -453,7 +450,6 @@ auto:
453
450
# We are intentionally allowing an old toolchain on this builder (and that's
454
451
# incompatible with LLVM downloads today).
455
452
NO_DOWNLOAD_CI_LLVM : 1
456
- CUSTOM_MINGW : 1
457
453
DIST_REQUIRE_ALL_TOOLS : 1
458
454
<< : *job-windows-8c
459
455
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# If we need to download a custom MinGW, do so here and set the path
3
3
# appropriately.
4
- #
5
- # Otherwise install MinGW through `pacman`
6
4
7
5
set -euo pipefail
8
6
IFS=$' \n\t '
@@ -16,19 +14,16 @@ if isWindows && isKnownToBeMingwBuild; then
16
14
case " ${CI_JOB_NAME} " in
17
15
* i686* )
18
16
bits=32
19
- arch=i686
20
17
mingw_archive=" ${MINGW_ARCHIVE_32} "
21
18
;;
22
19
* x86_64* )
23
20
bits=64
24
- arch=x86_64
25
21
mingw_archive=" ${MINGW_ARCHIVE_64} "
26
22
;;
27
23
* aarch64* )
28
24
# aarch64 is a cross-compiled target. Use the x86_64
29
25
# mingw, since that's the host architecture.
30
26
bits=64
31
- arch=x86_64
32
27
mingw_archive=" ${MINGW_ARCHIVE_64} "
33
28
;;
34
29
* )
@@ -38,13 +33,9 @@ if isWindows && isKnownToBeMingwBuild; then
38
33
;;
39
34
esac
40
35
41
- if [[ " ${CUSTOM_MINGW:- 0} " == 0 ]]; then
42
- pacman -S --noconfirm --needed mingw-w64-$arch -toolchain
43
- else
44
- mingw_dir=" mingw${bits} "
36
+ mingw_dir=" mingw${bits} "
45
37
46
- curl -o mingw.7z " ${MIRRORS_BASE} /${mingw_archive} "
47
- 7z x -y mingw.7z > /dev/null
48
- ciCommandAddPath " $( pwd) /${mingw_dir} /bin"
49
- fi
38
+ curl -o mingw.7z " ${MIRRORS_BASE} /${mingw_archive} "
39
+ 7z x -y mingw.7z > /dev/null
40
+ ciCommandAddPath " $( pwd) /${mingw_dir} /bin"
50
41
fi
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments