Lines Matching +full:- +full:- +full:disable +full:- +full:curl

1 msys2-64bit:
4 - saas-windows-medium-amd64
8 - msys64/var/cache
9 - ccache
20 CONFIGURE_ARGS: --disable-system --enable-tools -Ddebug=false -Doptimization=0
22 GIT_FETCH_EXTRA_FLAGS: --no-tags --prune --quiet
24 name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
27 - build/meson-logs/testlog.txt
29 junit: "build/meson-logs/testlog.junit.xml"
31 - Write-Output "Acquiring msys2.exe installer at $(Get-Date -Format u)"
32 - If ( !(Test-Path -Path msys64\var\cache ) ) {
35 - Invoke-WebRequest
36 "https://repo.msys2.org/distrib/msys2-x86_64-latest.sfx.exe.sig"
37 -outfile "msys2.exe.sig"
38 - if ( Test-Path -Path msys64\var\cache\msys2.exe.sig ) {
39 Write-Output "Cached installer sig" ;
40 …if ( ((Get-FileHash msys2.exe.sig).Hash -ne (Get-FileHash msys64\var\cache\msys2.exe.sig).Hash) ) {
41 Write-Output "Mis-matched installer sig, new installer download required" ;
42 Remove-Item -Path msys64\var\cache\msys2.exe.sig ;
43 if ( Test-Path -Path msys64\var\cache\msys2.exe ) {
44 Remove-Item -Path msys64\var\cache\msys2.exe
47 Write-Output "Matched installer sig, cached installer still valid"
50 Write-Output "No cached installer sig, new installer download required" ;
51 if ( Test-Path -Path msys64\var\cache\msys2.exe ) {
52 Remove-Item -Path msys64\var\cache\msys2.exe
55 - if ( !(Test-Path -Path msys64\var\cache\msys2.exe ) ) {
56 Write-Output "Fetching latest installer" ;
57 Invoke-WebRequest
58 "https://repo.msys2.org/distrib/msys2-x86_64-latest.sfx.exe"
59 -outfile "msys64\var\cache\msys2.exe" ;
60 Copy-Item -Path msys2.exe.sig -Destination msys64\var\cache\msys2.exe.sig
62 Write-Output "Using cached installer"
64 - Write-Output "Invoking msys2.exe installer at $(Get-Date -Format u)"
65 - msys64\var\cache\msys2.exe -y
66 - ((Get-Content -path .\msys64\etc\\post-install\\07-pacman-key.post -Raw)
67 -replace '--refresh-keys', '--version') |
68 Set-Content -Path ${CI_PROJECT_DIR}\msys64\etc\\post-install\\07-pacman-key.post
69 - .\msys64\usr\bin\bash -lc "sed -i 's/^CheckSpace/#CheckSpace/g' /etc/pacman.conf"
70 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Core update
71 - .\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' # Normal update
72 - taskkill /F /FI "MODULES eq msys-2.0.dll"
74 - Write-Output "Installing mingw packages at $(Get-Date -Format u)"
75 - .\msys64\usr\bin\bash -lc "pacman -Sy --noconfirm --needed
78 mingw-w64-x86_64-binutils
79 mingw-w64-x86_64-ccache
80 mingw-w64-x86_64-curl
81 mingw-w64-x86_64-gcc
82 mingw-w64-x86_64-glib2
83 mingw-w64-x86_64-libnfs
84 mingw-w64-x86_64-libssh
85 mingw-w64-x86_64-ninja
86 mingw-w64-x86_64-pixman
87 mingw-w64-x86_64-pkgconf
88 mingw-w64-x86_64-python
89 mingw-w64-x86_64-zstd"
90 - Write-Output "Running build at $(Get-Date -Format u)"
91 - $env:JOBS = $(.\msys64\usr\bin\bash -lc nproc)
92 - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
93 - $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink
94 - $env:CCACHE_BASEDIR = "$env:CI_PROJECT_DIR"
95 - $env:CCACHE_DIR = "$env:CCACHE_BASEDIR/ccache"
96 - $env:CCACHE_MAXSIZE = "500M"
97 - $env:CCACHE_DEPEND = 1 # cache misses are too expensive with preprocessor mode
98 - $env:CC = "ccache gcc"
99 - mkdir build
100 - cd build
101 - ..\msys64\usr\bin\bash -lc "ccache --zero-stats"
102 - ..\msys64\usr\bin\bash -lc "../configure $CONFIGURE_ARGS"
103 - ..\msys64\usr\bin\bash -lc "make -j$env:JOBS"
104- ..\msys64\usr\bin\bash -lc "make check MTESTARGS='$TEST_ARGS' || { cat meson-logs/testlog.txt; e…
105 - ..\msys64\usr\bin\bash -lc "ccache --show-stats"
106 - Write-Output "Finished build at $(Get-Date -Format u)"