-
-
Notifications
You must be signed in to change notification settings - Fork 137
82 lines (65 loc) · 1.98 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
76
77
78
79
80
81
82
# 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: WORKAROUND FOR https://github.com/actions/runner-images/issues/8659
run: |
echo "TEMPORARY WORKAROUND FOR GITHUB RUNNER BUG #8659\n\nRemoving GCC 13 as it breaks Clang14"
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list
sudo apt-get update
sudo apt-get install -y --allow-downgrades libc6=2.35-0ubuntu3.4 libc6-dev=2.35-0ubuntu3.4 libstdc++6=12.3.0-1ubuntu1~22.04 libgcc-s1=12.3.0-1ubuntu1~22.04
- 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
- 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++ -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