-
Notifications
You must be signed in to change notification settings - Fork 124
79 lines (76 loc) · 1.9 KB
/
ci.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Non regression tests for Zipper
on:
workflow_dispatch:
branches:
- main
- dev
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
non_regression_msys:
name: Non regression on Msys2
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: true
- name: msys2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: git mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-zlib mingw-w64-x86_64-ninja
- name: CI-Build
run: |
cmake -B build -GNinja -DCMAKE_CXX_COMPILER=g++ .
cd build
cmake --build .
echo 'Running non regression tests on Msys2'
./Zipper-test
non_regression_linux:
name: Non regression on Linux
runs-on: linux-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Installing packages
run: |
sudo apt-get update
sudo apt-get install -y ninja
- name: CI-Build
run: |
cmake -B build -GNinja -DCMAKE_CXX_COMPILER=g++ .
cd build
cmake --build .
echo 'Running non regression tests on Linux'
./Zipper-test
non_regression_macos:
name: Non regression on MacOS X
runs-on: macos-latest
steps:
- name: Checkou
uses: actions/checkout@v2
with:
submodules: true
- name: Installing packages
run: |
brew install ninja
- name: CI-Build
run: |
cmake -B build -GNinja -DCMAKE_CXX_COMPILER=g++ .
cd build
cmake --build .
echo 'Running non regression tests on MacOS X'
./Zipper-test