blob: 12a987cd71925b3ed06bc63aae8c9286f41c289f [file] [log] [blame]
Thomas Huth7876cba2021-11-15 15:06:23 +01001.shared_msys2_builder:
Daniel P. Berrangée312d1f2022-05-27 16:36:01 +01002 extends: .base_job_template
Thomas Huth7876cba2021-11-15 15:06:23 +01003 tags:
4 - shared-windows
5 - windows
6 - windows-1809
7 cache:
Daniel P. Berrangé2f7350c2023-08-29 17:15:17 +01008 key: "$CI_JOB_NAME"
Thomas Huth7876cba2021-11-15 15:06:23 +01009 paths:
Daniel P. Berrangé5ef56e32023-08-01 14:03:59 +010010 - msys64/var/cache
Daniel P. Berrangé2f7350c2023-08-29 17:15:17 +010011 - ccache
Daniel P. Berrangéef4fe312023-08-01 14:04:00 +010012 when: always
Thomas Huth7876cba2021-11-15 15:06:23 +010013 needs: []
14 stage: build
Daniel P. Berrangé2f7350c2023-08-29 17:15:17 +010015 timeout: 100m
Daniel P. Berrangéf54ba562023-08-01 14:04:03 +010016 variables:
17 # This feature doesn't (currently) work with PowerShell, it stops
18 # the echo'ing of commands being run and doesn't show any timing
19 FF_SCRIPT_SECTIONS: 0
Marc-André Lureaua3fcbb42023-06-20 17:37:19 +020020 artifacts:
21 name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
22 expire_in: 7 days
23 paths:
24 - build/meson-logs/testlog.txt
Marc-André Lureau81a12312023-06-20 17:37:20 +020025 reports:
26 junit: "build/meson-logs/testlog.junit.xml"
Thomas Huth7876cba2021-11-15 15:06:23 +010027 before_script:
Daniel P. Berrangéb64052c2023-08-01 14:03:57 +010028 - Write-Output "Acquiring msys2.exe installer at $(Get-Date -Format u)"
Thomas Huth7876cba2021-11-15 15:06:23 +010029 - If ( !(Test-Path -Path msys64\var\cache ) ) {
30 mkdir msys64\var\cache
31 }
Daniel P. Berrangé46aedd32023-08-01 14:03:58 +010032 - Invoke-WebRequest
33 "https://repo.msys2.org/distrib/msys2-x86_64-latest.sfx.exe.sig"
34 -outfile "msys2.exe.sig"
35 - if ( Test-Path -Path msys64\var\cache\msys2.exe.sig ) {
36 Write-Output "Cached installer sig" ;
37 if ( ((Get-FileHash msys2.exe.sig).Hash -ne (Get-FileHash msys64\var\cache\msys2.exe.sig).Hash) ) {
38 Write-Output "Mis-matched installer sig, new installer download required" ;
39 Remove-Item -Path msys64\var\cache\msys2.exe.sig ;
40 if ( Test-Path -Path msys64\var\cache\msys2.exe ) {
41 Remove-Item -Path msys64\var\cache\msys2.exe
42 }
43 } else {
44 Write-Output "Matched installer sig, cached installer still valid"
45 }
46 } else {
47 Write-Output "No cached installer sig, new installer download required" ;
48 if ( Test-Path -Path msys64\var\cache\msys2.exe ) {
49 Remove-Item -Path msys64\var\cache\msys2.exe
50 }
51 }
52 - if ( !(Test-Path -Path msys64\var\cache\msys2.exe ) ) {
53 Write-Output "Fetching latest installer" ;
Thomas Huth7876cba2021-11-15 15:06:23 +010054 Invoke-WebRequest
Daniel P. Berrangé46aedd32023-08-01 14:03:58 +010055 "https://repo.msys2.org/distrib/msys2-x86_64-latest.sfx.exe"
56 -outfile "msys64\var\cache\msys2.exe" ;
57 Copy-Item -Path msys2.exe.sig -Destination msys64\var\cache\msys2.exe.sig
58 } else {
59 Write-Output "Using cached installer"
Thomas Huth7876cba2021-11-15 15:06:23 +010060 }
Daniel P. Berrangéb64052c2023-08-01 14:03:57 +010061 - Write-Output "Invoking msys2.exe installer at $(Get-Date -Format u)"
Thomas Huth7876cba2021-11-15 15:06:23 +010062 - msys64\var\cache\msys2.exe -y
63 - ((Get-Content -path .\msys64\etc\\post-install\\07-pacman-key.post -Raw)
64 -replace '--refresh-keys', '--version') |
65 Set-Content -Path ${CI_PROJECT_DIR}\msys64\etc\\post-install\\07-pacman-key.post
66 - .\msys64\usr\bin\bash -lc "sed -i 's/^CheckSpace/#CheckSpace/g' /etc/pacman.conf"
67 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Core update
68 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Normal update
69 - taskkill /F /FI "MODULES eq msys-2.0.dll"
Daniel P. Berrangé11961d02023-08-01 14:03:56 +010070 script:
Daniel P. Berrangéb64052c2023-08-01 14:03:57 +010071 - Write-Output "Installing mingw packages at $(Get-Date -Format u)"
Daniel P. Berrangé11961d02023-08-01 14:03:56 +010072 - .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
73 bison diffutils flex
74 git grep make sed
75 $MINGW_TARGET-capstone
Daniel P. Berrangé2f7350c2023-08-29 17:15:17 +010076 $MINGW_TARGET-ccache
Daniel P. Berrangé11961d02023-08-01 14:03:56 +010077 $MINGW_TARGET-curl
78 $MINGW_TARGET-cyrus-sasl
79 $MINGW_TARGET-dtc
80 $MINGW_TARGET-gcc
81 $MINGW_TARGET-glib2
82 $MINGW_TARGET-gnutls
83 $MINGW_TARGET-gtk3
84 $MINGW_TARGET-libgcrypt
85 $MINGW_TARGET-libjpeg-turbo
86 $MINGW_TARGET-libnfs
87 $MINGW_TARGET-libpng
88 $MINGW_TARGET-libssh
89 $MINGW_TARGET-libtasn1
90 $MINGW_TARGET-libusb
91 $MINGW_TARGET-lzo2
92 $MINGW_TARGET-nettle
93 $MINGW_TARGET-ninja
94 $MINGW_TARGET-pixman
95 $MINGW_TARGET-pkgconf
96 $MINGW_TARGET-python
97 $MINGW_TARGET-SDL2
98 $MINGW_TARGET-SDL2_image
99 $MINGW_TARGET-snappy
100 $MINGW_TARGET-spice
101 $MINGW_TARGET-usbredir
102 $MINGW_TARGET-zstd "
Daniel P. Berrangéb64052c2023-08-01 14:03:57 +0100103 - Write-Output "Running build at $(Get-Date -Format u)"
Daniel P. Berrangé11961d02023-08-01 14:03:56 +0100104 - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
105 - $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink
Daniel P. Berrangé2f7350c2023-08-29 17:15:17 +0100106 - $env:CCACHE_BASEDIR = "$env:CI_PROJECT_DIR"
107 - $env:CCACHE_DIR = "$env:CCACHE_BASEDIR/ccache"
108 - $env:CCACHE_MAXSIZE = "500M"
109 - $env:CCACHE_DEPEND = 1 # cache misses are too expensive with preprocessor mode
110 - $env:CC = "ccache gcc"
Daniel P. Berrangé11961d02023-08-01 14:03:56 +0100111 - mkdir build
112 - cd build
Daniel P. Berrangé2f7350c2023-08-29 17:15:17 +0100113 - ..\msys64\usr\bin\bash -lc "ccache --zero-stats"
Daniel P. Berrangé11961d02023-08-01 14:03:56 +0100114 - ..\msys64\usr\bin\bash -lc "../configure --enable-fdt=system $CONFIGURE_ARGS"
115 - ..\msys64\usr\bin\bash -lc "make"
116 - ..\msys64\usr\bin\bash -lc "make check MTESTARGS='$TEST_ARGS' || { cat meson-logs/testlog.txt; exit 1; } ;"
Daniel P. Berrangé2f7350c2023-08-29 17:15:17 +0100117 - ..\msys64\usr\bin\bash -lc "ccache --show-stats"
Daniel P. Berrangéb64052c2023-08-01 14:03:57 +0100118 - Write-Output "Finished build at $(Get-Date -Format u)"
Thomas Huth7876cba2021-11-15 15:06:23 +0100119
120msys2-64bit:
121 extends: .shared_msys2_builder
Daniel P. Berrangé11961d02023-08-01 14:03:56 +0100122 variables:
123 MINGW_TARGET: mingw-w64-x86_64
124 MSYSTEM: MINGW64
125 # do not remove "--without-default-devices"!
126 # commit 9f8e6cad65a6 ("gitlab-ci: Speed up the msys2-64bit job by using --without-default-devices"
127 # changed to compile QEMU with the --without-default-devices switch
128 # for the msys2 64-bit job, due to the build could not complete within
Daniel P. Berrangé63f53652023-08-01 14:04:02 +0100129 CONFIGURE_ARGS: --target-list=x86_64-softmmu --without-default-devices -Ddebug=false -Doptimization=0
Daniel P. Berrangé11961d02023-08-01 14:03:56 +0100130 # qTests don't run successfully with "--without-default-devices",
131 # so let's exclude the qtests from CI for now.
132 TEST_ARGS: --no-suite qtest
Thomas Huth7876cba2021-11-15 15:06:23 +0100133
134msys2-32bit:
135 extends: .shared_msys2_builder
Daniel P. Berrangé11961d02023-08-01 14:03:56 +0100136 variables:
137 MINGW_TARGET: mingw-w64-i686
138 MSYSTEM: MINGW32
Daniel P. Berrangé63f53652023-08-01 14:04:02 +0100139 CONFIGURE_ARGS: --target-list=ppc64-softmmu -Ddebug=false -Doptimization=0
Daniel P. Berrangé11961d02023-08-01 14:03:56 +0100140 TEST_ARGS: --no-suite qtest