Skip to content

ci: move GitLab pipeline builds from Debian 11 to Debian 12 #5

ci: move GitLab pipeline builds from Debian 11 to Debian 12

ci: move GitLab pipeline builds from Debian 11 to Debian 12 #5

Workflow file for this run

name: MSYS2
on: push
jobs:
msys2_mingw64:
runs-on: windows-2022
defaults:
run:
shell: msys2 {0}
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
update: true
install: >-
mingw-w64-x86_64-cmake
mingw-w64-x86_64-gcc
mingw-w64-x86_64-make
mingw-w64-x86_64-ninja
- name: Build
run: |
export MSYSTEM=MINGW64
export CXX=g++
export CC=gcc
cd $GITHUB_WORKSPACE
mkdir build
cd build
cmake ../
cmake --build . -j2
- name: Run tests
run: |
export MSYSTEM=MINGW64
cd "$GITHUB_WORKSPACE/build"
ctest -V