Skip to content
Snippets Groups Projects
Commit ab59b178 authored by Tobias Glaser's avatar Tobias Glaser
Browse files

fixing gitlab-ci

parent e99d2c86
No related branches found
No related tags found
No related merge requests found
......@@ -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}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment