7 key: "${CI_JOB_NAME}-cache"
9 - ${CI_PROJECT_DIR}/msys64/var/cache
14 - If ( !(Test-Path -Path msys64\var\cache ) ) {
15 mkdir msys64\var\cache
17 - If ( !(Test-Path -Path msys64\var\cache\msys2.exe ) ) {
19 "https://github.com/msys2/msys2-installer/releases/download/2022-05-03/msys2-base-x86_64-20220503.sfx.exe"
20 -outfile "msys64\var\cache\msys2.exe"
22 - msys64\var\cache\msys2.exe -y
23 - ((Get-Content -path .\msys64\etc\\post-install\\07-pacman-key.post -Raw)
24 -replace '--refresh-keys', '--version') |
25 Set-Content -Path ${CI_PROJECT_DIR}\msys64\etc\\post-install\\07-pacman-key.post
26 - .\msys64\usr\bin\bash -lc "sed -i 's/^CheckSpace/#CheckSpace/g' /etc/pacman.conf"
27 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Core update
28 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Normal update
29 - taskkill /F /FI "MODULES eq msys-2.0.dll"
32 extends: .shared_msys2_builder
34 - .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
35 diffutils git grep make sed
36 mingw-w64-x86_64-capstone
38 mingw-w64-x86_64-cyrus-sasl
40 mingw-w64-x86_64-glib2
41 mingw-w64-x86_64-gnutls
42 mingw-w64-x86_64-libnfs
43 mingw-w64-x86_64-libpng
44 mingw-w64-x86_64-libssh
45 mingw-w64-x86_64-libtasn1
46 mingw-w64-x86_64-libusb
47 mingw-w64-x86_64-nettle
48 mingw-w64-x86_64-ninja
49 mingw-w64-x86_64-pixman
50 mingw-w64-x86_64-pkgconf
51 mingw-w64-x86_64-python
53 mingw-w64-x86_64-SDL2_image
54 mingw-w64-x86_64-snappy
55 mingw-w64-x86_64-usbredir
56 mingw-w64-x86_64-zstd "
57 - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
58 - $env:MSYSTEM = 'MINGW64' # Start a 64 bit Mingw environment
59 - .\msys64\usr\bin\bash -lc './configure --target-list=x86_64-softmmu
60 --enable-capstone=system --without-default-devices'
61 - .\msys64\usr\bin\bash -lc "sed -i '/^ROMS=/d' build/config-host.mak"
62 - .\msys64\usr\bin\bash -lc 'make -j2'
63 - .\msys64\usr\bin\bash -lc 'make check'
66 extends: .shared_msys2_builder
68 - .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
69 diffutils git grep make sed
70 mingw-w64-i686-capstone
72 mingw-w64-i686-cyrus-sasl
77 mingw-w64-i686-libgcrypt
78 mingw-w64-i686-libjpeg-turbo
80 mingw-w64-i686-libtasn1
85 mingw-w64-i686-pkgconf
88 mingw-w64-i686-usbredir "
89 - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
90 - $env:MSYSTEM = 'MINGW32' # Start a 32-bit MinG environment
93 - ..\msys64\usr\bin\bash -lc "../configure --target-list=ppc64-softmmu
94 --enable-capstone=system"
95 - ..\msys64\usr\bin\bash -lc 'make -j2'
96 - ..\msys64\usr\bin\bash -lc 'make check'