-
-
Notifications
You must be signed in to change notification settings - Fork 132
75 lines (59 loc) · 1.52 KB
/
test.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
# Runs all tests
name: Test
on:
workflow_dispatch:
push:
branches:
- dev/develop
- main
pull_request:
branches:
- dev/develop
- main
jobs:
test_linux:
name: run on linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.3'
- name: Install tools
run: sudo apt-get update && sudo apt-get install -y cmake ninja-build clang-15 clang++-15
- name: Install dependencies
run: sudo apt-get install -y python3-venv
- name: Build
run: |
mkdir build-Release
cd build-Release
cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++-15 -DBUILD_TESTS=ON ..
cmake --build .
- name: Run tests
run: |
cd build-Release
ctest
test_windows:
name: run on windows
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.3'
- name: Build
run: |
mkdir build
cd build
cmake -DBUILD_TESTS=On ..
cmake --build . --config Release
- name: Run tests
run: |
cd build
ctest -C Release