From e99d2c86b4800f1f3a9a43fa8372dd5af2f16f58 Mon Sep 17 00:00:00 2001 From: Tobias Glaser <tobias.glaser@student.reutlingen-university.de> Date: Mon, 9 Jun 2025 21:57:43 +0000 Subject: [PATCH] testing gitlab-ci --- .gitlab-ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f9852a..0f618a2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,21 +3,25 @@ Windows-MSYS2-MINGW64: only: - tags tags: [ windows, msys2 ] - before_script: + 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 - 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' - script: + - echo 3 - | C:\msys64\usr\bin\bash -lcx ' mkdir -p build @@ -26,8 +30,7 @@ Windows-MSYS2-MINGW64: cmake --build . --target cute ls -lh cd ..' - #- C:\msys64\usr\bin\bash -lc 'grep ^PASS tests/basic.log' - after_script: + - echo 4 - | C:\msys64\usr\bin\bash -lcx ' mkdir -p template/{lib,src} -- GitLab