2021-11-15 17:06:23 +03:00
|
|
|
.shared_msys2_builder:
|
2022-05-27 18:36:01 +03:00
|
|
|
extends: .base_job_template
|
2021-11-15 17:06:23 +03:00
|
|
|
tags:
|
|
|
|
- shared-windows
|
|
|
|
- windows
|
|
|
|
- windows-1809
|
|
|
|
cache:
|
|
|
|
key: "${CI_JOB_NAME}-cache"
|
|
|
|
paths:
|
|
|
|
- ${CI_PROJECT_DIR}/msys64/var/cache
|
|
|
|
needs: []
|
|
|
|
stage: build
|
2023-01-04 15:35:59 +03:00
|
|
|
timeout: 80m
|
2023-06-20 18:37:19 +03:00
|
|
|
artifacts:
|
|
|
|
name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
|
|
|
|
expire_in: 7 days
|
|
|
|
paths:
|
|
|
|
- build/meson-logs/testlog.txt
|
2023-06-20 18:37:20 +03:00
|
|
|
reports:
|
|
|
|
junit: "build/meson-logs/testlog.junit.xml"
|
2021-11-15 17:06:23 +03:00
|
|
|
before_script:
|
2023-08-01 16:03:57 +03:00
|
|
|
- Write-Output "Acquiring msys2.exe installer at $(Get-Date -Format u)"
|
2021-11-15 17:06:23 +03:00
|
|
|
- If ( !(Test-Path -Path msys64\var\cache ) ) {
|
|
|
|
mkdir msys64\var\cache
|
|
|
|
}
|
|
|
|
- If ( !(Test-Path -Path msys64\var\cache\msys2.exe ) ) {
|
|
|
|
Invoke-WebRequest
|
2022-07-28 23:04:22 +03:00
|
|
|
"https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-base-x86_64-20220603.sfx.exe"
|
2021-11-15 17:06:23 +03:00
|
|
|
-outfile "msys64\var\cache\msys2.exe"
|
|
|
|
}
|
2023-08-01 16:03:57 +03:00
|
|
|
- Write-Output "Invoking msys2.exe installer at $(Get-Date -Format u)"
|
2021-11-15 17:06:23 +03:00
|
|
|
- msys64\var\cache\msys2.exe -y
|
|
|
|
- ((Get-Content -path .\msys64\etc\\post-install\\07-pacman-key.post -Raw)
|
|
|
|
-replace '--refresh-keys', '--version') |
|
|
|
|
Set-Content -Path ${CI_PROJECT_DIR}\msys64\etc\\post-install\\07-pacman-key.post
|
|
|
|
- .\msys64\usr\bin\bash -lc "sed -i 's/^CheckSpace/#CheckSpace/g' /etc/pacman.conf"
|
|
|
|
- .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Core update
|
|
|
|
- .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Normal update
|
|
|
|
- taskkill /F /FI "MODULES eq msys-2.0.dll"
|
|
|
|
script:
|
2023-08-01 16:03:57 +03:00
|
|
|
- Write-Output "Installing mingw packages at $(Get-Date -Format u)"
|
2021-11-15 17:06:23 +03:00
|
|
|
- .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
|
2022-09-29 14:41:48 +03:00
|
|
|
bison diffutils flex
|
|
|
|
git grep make sed
|
2023-08-01 16:03:56 +03:00
|
|
|
$MINGW_TARGET-capstone
|
|
|
|
$MINGW_TARGET-curl
|
|
|
|
$MINGW_TARGET-cyrus-sasl
|
|
|
|
$MINGW_TARGET-dtc
|
|
|
|
$MINGW_TARGET-gcc
|
|
|
|
$MINGW_TARGET-glib2
|
|
|
|
$MINGW_TARGET-gnutls
|
|
|
|
$MINGW_TARGET-gtk3
|
|
|
|
$MINGW_TARGET-libgcrypt
|
|
|
|
$MINGW_TARGET-libjpeg-turbo
|
|
|
|
$MINGW_TARGET-libnfs
|
|
|
|
$MINGW_TARGET-libpng
|
|
|
|
$MINGW_TARGET-libssh
|
|
|
|
$MINGW_TARGET-libtasn1
|
|
|
|
$MINGW_TARGET-libusb
|
|
|
|
$MINGW_TARGET-lzo2
|
|
|
|
$MINGW_TARGET-nettle
|
|
|
|
$MINGW_TARGET-ninja
|
|
|
|
$MINGW_TARGET-pixman
|
|
|
|
$MINGW_TARGET-pkgconf
|
|
|
|
$MINGW_TARGET-python
|
|
|
|
$MINGW_TARGET-SDL2
|
|
|
|
$MINGW_TARGET-SDL2_image
|
|
|
|
$MINGW_TARGET-snappy
|
|
|
|
$MINGW_TARGET-spice
|
|
|
|
$MINGW_TARGET-usbredir
|
|
|
|
$MINGW_TARGET-zstd "
|
2023-08-01 16:03:57 +03:00
|
|
|
- Write-Output "Running build at $(Get-Date -Format u)"
|
2021-11-15 17:06:23 +03:00
|
|
|
- $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
|
2022-07-25 17:05:12 +03:00
|
|
|
- $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink
|
2023-06-20 18:37:19 +03:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2023-08-01 16:03:56 +03:00
|
|
|
- ..\msys64\usr\bin\bash -lc "../configure --enable-fdt=system $CONFIGURE_ARGS"
|
|
|
|
- ..\msys64\usr\bin\bash -lc "make"
|
|
|
|
- ..\msys64\usr\bin\bash -lc "make check MTESTARGS='$TEST_ARGS' || { cat meson-logs/testlog.txt; exit 1; } ;"
|
2023-08-01 16:03:57 +03:00
|
|
|
- Write-Output "Finished build at $(Get-Date -Format u)"
|
2023-08-01 16:03:56 +03:00
|
|
|
|
|
|
|
msys2-64bit:
|
|
|
|
extends: .shared_msys2_builder
|
|
|
|
variables:
|
|
|
|
MINGW_TARGET: mingw-w64-x86_64
|
|
|
|
MSYSTEM: MINGW64
|
|
|
|
# do not remove "--without-default-devices"!
|
|
|
|
# commit 9f8e6cad65a6 ("gitlab-ci: Speed up the msys2-64bit job by using --without-default-devices"
|
|
|
|
# changed to compile QEMU with the --without-default-devices switch
|
|
|
|
# for the msys2 64-bit job, due to the build could not complete within
|
|
|
|
CONFIGURE_ARGS: --target-list=x86_64-softmmu --without-default-devices
|
|
|
|
# qTests don't run successfully with "--without-default-devices",
|
|
|
|
# so let's exclude the qtests from CI for now.
|
|
|
|
TEST_ARGS: --no-suite qtest
|
2021-11-15 17:06:23 +03:00
|
|
|
|
|
|
|
msys2-32bit:
|
|
|
|
extends: .shared_msys2_builder
|
2023-08-01 16:03:56 +03:00
|
|
|
variables:
|
|
|
|
MINGW_TARGET: mingw-w64-i686
|
|
|
|
MSYSTEM: MINGW32
|
|
|
|
CONFIGURE_ARGS: --target-list=ppc64-softmmu
|
|
|
|
TEST_ARGS: --no-suite qtest
|