-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (44 loc) · 1.12 KB
/
check.yaml
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
on:
push:
pull_request:
name: check
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v3
- name: Install SFML
run: sudo apt install libsfml-dev
- name: Install Codecov
run: sudo pip install codecov
- name: Download magic_enum
run: |
cd ..
git clone https://github.com/Neargye/magic_enum
cd -
- name: Install magic_enum
run: |
cd ../magic_enum
cmake .
make
cd -
- name: qmake
run: qmake "DEFINES+=LOGIC_ONLY" game.pro
- name: make
run: make debug
- name: run
run: ./conquer_chess --test
- name: Measure codecov 1
run: ./scripts/get_code_cov.sh
- name: Measure codecov 2
run: codecov
- name: Measure codecov 3
run: bash <(curl -s https://codecov.io/bash)
- name: clean for release build
run: make clean
- name: qmake
run: qmake game.pro
- name: make
run: make release --silent