-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 901 Bytes
/
msys2.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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@v3
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