From ab59b178898a09bde5e915935f7b4348ef079e25 Mon Sep 17 00:00:00 2001 From: Tobias Glaser <tobias.glaser@student.reutlingen-university.de> Date: Mon, 9 Jun 2025 22:16:30 +0000 Subject: [PATCH] fixing gitlab-ci --- .gitlab-ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0f618a2..2e91e33 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,24 +4,19 @@ Windows-MSYS2-MINGW64: - tags tags: [ windows, msys2 ] script: - - echo 0 - - wget.exe -nv -O msys2.exe https://github.com/msys2/msys2-installer/releases/download/nightly-x86_64/msys2-base-x86_64-latest.sfx.exe + - Invoke-WebRequest -OutFile "msys2.exe" -Uri "https://github.com/msys2/msys2-installer/releases/download/nightly-x86_64/msys2-base-x86_64-latest.sfx.exe" - Get-FileHash ./msys2.exe -Algorithm SHA256 | Format-List - - echo 0.5 - ./msys2.exe -y -oC:\ - Remove-Item msys2.exe - $env:CHERE_INVOKING = 'yes' - $env:MSYSTEM = 'MINGW64' # https://www.msys2.org/docs/environments/ - - echo 1 - C:\msys64\usr\bin\bash -lc ' ' - C:\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' - C:\msys64\usr\bin\bash -lc 'pacman --noconfirm -Syuu' - - echo 2 - | C:\msys64\usr\bin\bash -lcx ' pacman --noconfirm -Syu mingw-w64-ucrt-x86_64-gcc mingw-w64-x86_64-cmake pacman --noconfirm -Syu zip' - - echo 3 - | C:\msys64\usr\bin\bash -lcx ' mkdir -p build @@ -30,7 +25,6 @@ Windows-MSYS2-MINGW64: cmake --build . --target cute ls -lh cd ..' - - echo 4 - | C:\msys64\usr\bin\bash -lcx ' mkdir -p template/{lib,src} -- GitLab