]> git.proxmox.com Git - mirror_qemu.git/blob - .gitlab-ci.d/windows.yml
gitlab: add dlltool to Windows CI
[mirror_qemu.git] / .gitlab-ci.d / windows.yml
1 .shared_msys2_builder:
2 extends: .base_job_template
3 tags:
4 - shared-windows
5 - windows
6 - windows-1809
7 cache:
8 key: "$CI_JOB_NAME"
9 paths:
10 - msys64/var/cache
11 - ccache
12 when: always
13 needs: []
14 stage: build
15 timeout: 100m
16 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
20 artifacts:
21 name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
22 expire_in: 7 days
23 paths:
24 - build/meson-logs/testlog.txt
25 reports:
26 junit: "build/meson-logs/testlog.junit.xml"
27 before_script:
28 - Write-Output "Acquiring msys2.exe installer at $(Get-Date -Format u)"
29 - If ( !(Test-Path -Path msys64\var\cache ) ) {
30 mkdir msys64\var\cache
31 }
32 - 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" ;
54 Invoke-WebRequest
55 "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"
60 }
61 - Write-Output "Invoking msys2.exe installer at $(Get-Date -Format u)"
62 - 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"
70 script:
71 - Write-Output "Installing mingw packages at $(Get-Date -Format u)"
72 - .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
73 bison diffutils flex
74 git grep make sed
75 $MINGW_TARGET-binutils
76 $MINGW_TARGET-capstone
77 $MINGW_TARGET-ccache
78 $MINGW_TARGET-curl
79 $MINGW_TARGET-cyrus-sasl
80 $MINGW_TARGET-dtc
81 $MINGW_TARGET-gcc
82 $MINGW_TARGET-glib2
83 $MINGW_TARGET-gnutls
84 $MINGW_TARGET-gtk3
85 $MINGW_TARGET-libgcrypt
86 $MINGW_TARGET-libjpeg-turbo
87 $MINGW_TARGET-libnfs
88 $MINGW_TARGET-libpng
89 $MINGW_TARGET-libssh
90 $MINGW_TARGET-libtasn1
91 $MINGW_TARGET-libusb
92 $MINGW_TARGET-lzo2
93 $MINGW_TARGET-nettle
94 $MINGW_TARGET-ninja
95 $MINGW_TARGET-pixman
96 $MINGW_TARGET-pkgconf
97 $MINGW_TARGET-python
98 $MINGW_TARGET-SDL2
99 $MINGW_TARGET-SDL2_image
100 $MINGW_TARGET-snappy
101 $MINGW_TARGET-spice
102 $MINGW_TARGET-usbredir
103 $MINGW_TARGET-zstd "
104 - Write-Output "Running build at $(Get-Date -Format u)"
105 - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
106 - $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink
107 - $env:CCACHE_BASEDIR = "$env:CI_PROJECT_DIR"
108 - $env:CCACHE_DIR = "$env:CCACHE_BASEDIR/ccache"
109 - $env:CCACHE_MAXSIZE = "500M"
110 - $env:CCACHE_DEPEND = 1 # cache misses are too expensive with preprocessor mode
111 - $env:CC = "ccache gcc"
112 - mkdir build
113 - cd build
114 - ..\msys64\usr\bin\bash -lc "ccache --zero-stats"
115 - ..\msys64\usr\bin\bash -lc "../configure --enable-fdt=system $CONFIGURE_ARGS"
116 - ..\msys64\usr\bin\bash -lc "make"
117 - ..\msys64\usr\bin\bash -lc "make check MTESTARGS='$TEST_ARGS' || { cat meson-logs/testlog.txt; exit 1; } ;"
118 - ..\msys64\usr\bin\bash -lc "ccache --show-stats"
119 - Write-Output "Finished build at $(Get-Date -Format u)"
120
121 msys2-64bit:
122 extends: .shared_msys2_builder
123 variables:
124 MINGW_TARGET: mingw-w64-x86_64
125 MSYSTEM: MINGW64
126 # do not remove "--without-default-devices"!
127 # commit 9f8e6cad65a6 ("gitlab-ci: Speed up the msys2-64bit job by using --without-default-devices"
128 # changed to compile QEMU with the --without-default-devices switch
129 # for the msys2 64-bit job, due to the build could not complete within
130 CONFIGURE_ARGS: --target-list=x86_64-softmmu --without-default-devices -Ddebug=false -Doptimization=0
131 # qTests don't run successfully with "--without-default-devices",
132 # so let's exclude the qtests from CI for now.
133 TEST_ARGS: --no-suite qtest
134
135 msys2-32bit:
136 extends: .shared_msys2_builder
137 variables:
138 MINGW_TARGET: mingw-w64-i686
139 MSYSTEM: MINGW32
140 CONFIGURE_ARGS: --target-list=ppc64-softmmu -Ddebug=false -Doptimization=0
141 TEST_ARGS: --no-suite qtest