2 extends: .base_job_template
8 key: "${CI_JOB_NAME}-cache"
10 - ${CI_PROJECT_DIR}/msys64/var/cache
15 name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
18 - build/meson-logs/testlog.txt
20 junit: "build/meson-logs/testlog.junit.xml"
22 - If ( !(Test-Path -Path msys64\var\cache ) ) {
23 mkdir msys64\var\cache
25 - If ( !(Test-Path -Path msys64\var\cache\msys2.exe ) ) {
27 "https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-base-x86_64-20220603.sfx.exe"
28 -outfile "msys64\var\cache\msys2.exe"
30 - msys64\var\cache\msys2.exe -y
31 - ((Get-Content -path .\msys64\etc\\post-install\\07-pacman-key.post -Raw)
32 -replace '--refresh-keys', '--version') |
33 Set-Content -Path ${CI_PROJECT_DIR}\msys64\etc\\post-install\\07-pacman-key.post
34 - .\msys64\usr\bin\bash -lc "sed -i 's/^CheckSpace/#CheckSpace/g' /etc/pacman.conf"
35 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Core update
36 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Normal update
37 - taskkill /F /FI "MODULES eq msys-2.0.dll"
40 extends: .shared_msys2_builder
42 - .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
45 mingw-w64-x86_64-capstone
47 mingw-w64-x86_64-cyrus-sasl
50 mingw-w64-x86_64-glib2
51 mingw-w64-x86_64-gnutls
53 mingw-w64-x86_64-libgcrypt
54 mingw-w64-x86_64-libjpeg-turbo
55 mingw-w64-x86_64-libnfs
56 mingw-w64-x86_64-libpng
57 mingw-w64-x86_64-libssh
58 mingw-w64-x86_64-libtasn1
59 mingw-w64-x86_64-libusb
61 mingw-w64-x86_64-nettle
62 mingw-w64-x86_64-ninja
63 mingw-w64-x86_64-pixman
64 mingw-w64-x86_64-pkgconf
65 mingw-w64-x86_64-python
67 mingw-w64-x86_64-SDL2_image
68 mingw-w64-x86_64-snappy
69 mingw-w64-x86_64-spice
70 mingw-w64-x86_64-usbredir
71 mingw-w64-x86_64-zstd "
72 - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
73 - $env:MSYSTEM = 'MINGW64' # Start a 64-bit MinGW environment
74 - $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink
77 # Note: do not remove "--without-default-devices"!
78 # commit 9f8e6cad65a6 ("gitlab-ci: Speed up the msys2-64bit job by using --without-default-devices"
79 # changed to compile QEMU with the --without-default-devices switch
80 # for the msys2 64-bit job, due to the build could not complete within
81 # the project timeout.
82 - ..\msys64\usr\bin\bash -lc '../configure --target-list=x86_64-softmmu
83 --without-default-devices --enable-fdt=system'
84 - ..\msys64\usr\bin\bash -lc 'make'
85 # qTests don't run successfully with "--without-default-devices",
86 # so let's exclude the qtests from CI for now.
87 - ..\msys64\usr\bin\bash -lc 'make check MTESTARGS=\"--no-suite qtest\" || { cat meson-logs/testlog.txt; exit 1; } ;'
90 extends: .shared_msys2_builder
92 - .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
95 mingw-w64-i686-capstone
97 mingw-w64-i686-cyrus-sasl
101 mingw-w64-i686-gnutls
103 mingw-w64-i686-libgcrypt
104 mingw-w64-i686-libjpeg-turbo
105 mingw-w64-i686-libnfs
106 mingw-w64-i686-libpng
107 mingw-w64-i686-libssh
108 mingw-w64-i686-libtasn1
109 mingw-w64-i686-libusb
111 mingw-w64-i686-nettle
113 mingw-w64-i686-pixman
114 mingw-w64-i686-pkgconf
115 mingw-w64-i686-python
117 mingw-w64-i686-SDL2_image
118 mingw-w64-i686-snappy
120 mingw-w64-i686-usbredir
121 mingw-w64-i686-zstd "
122 - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
123 - $env:MSYSTEM = 'MINGW32' # Start a 32-bit MinGW environment
124 - $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink
127 - ..\msys64\usr\bin\bash -lc '../configure --target-list=ppc64-softmmu
129 - ..\msys64\usr\bin\bash -lc 'make'
130 - ..\msys64\usr\bin\bash -lc 'make check MTESTARGS=\"--no-suite qtest\" ||
131 { cat meson-logs/testlog.txt; exit 1; }'