mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
gitlab-ci: Install 7-Zip using the .msi
So we don't need cmake to extract a file.
This commit is contained in:
parent
fec85df14d
commit
7ab3228f21
@ -70,7 +70,6 @@ clang:asan:
|
||||
key: "$MSYSTEM"
|
||||
paths:
|
||||
- libxml2-build/xmlconf/
|
||||
- 7za.exe
|
||||
|
||||
mingw:w64-x86_64:shared:
|
||||
extends: .mingw
|
||||
@ -164,7 +163,6 @@ cmake:linux:clang:static:
|
||||
key: "$MSYSTEM"
|
||||
paths:
|
||||
- libxml2-build/xmlconf/
|
||||
- 7za.exe
|
||||
artifacts:
|
||||
paths:
|
||||
- libxml2-$Env:CI_COMMIT_SHORT_SHA-$Env:MSYSTEM-$Env:SUFFIX.7z
|
||||
@ -238,7 +236,6 @@ cmake:mingw:w64-x86_64:static:
|
||||
paths:
|
||||
- cmake-$Env:CMAKE_VERSION-win64-x64/
|
||||
- libxml2-build/xmlconf/
|
||||
- 7za.exe
|
||||
artifacts:
|
||||
paths:
|
||||
- libxml2-$Env:CI_COMMIT_SHORT_SHA-$Env:CMAKE_GENERATOR_TOOLSET-$Env:CMAKE_GENERATOR_PLATFORM-$Env:SUFFIX.7z
|
||||
|
@ -1,4 +1,4 @@
|
||||
if (-not (Test-Path 7za.exe)) {
|
||||
Invoke-WebRequest -Uri https://www.7-zip.org/a/7z1900-extra.7z -OutFile 7z1900-extra.7z
|
||||
cmake -E tar xf 7z1900-extra.7z 7za.exe
|
||||
if (-not (Get-Command "7za.exe" -ErrorAction SilentlyContinue)) {
|
||||
Invoke-WebRequest -Uri https://www.7-zip.org/a/7z2201.msi -OutFile 7z2201.msi
|
||||
msiexec /i $Installer7Zip /qb
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user