-
Notifications
You must be signed in to change notification settings - Fork 15
161 lines (136 loc) · 4.53 KB
/
cmake.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
name: build
on:
push:
env:
BUILD_TYPE: Release
SK_VERSION: nover
PY_VERSION: nover
jobs:
ubuntu-test:
runs-on: ubuntu-22.04
env:
CC: gcc-12
CXX: g++-12
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure stuff
run: |
sudo apt install g++-12
mkdir ${{github.workspace}}/build
cd ${{github.workspace}}/build
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DUSE_GCOV=TRUE -DTOOLSET=FALSE -DODR_TEST=TRUE ..
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build .
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --output-on-failure
- name: Install coverage parser
working-directory: ${{github.workspace}}
run: |
sudo apt install python3-setuptools python3-idna python3-requests python3-urllib3
git clone https://github.com/PredatorCZ/cpp-coveralls.git
pushd cpp-coveralls
sudo python3 setup.py install
popd
- name: Upload coverage report
working-directory: ${{github.workspace}}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.CoverallsToken }}
COVERALLS_SERVICE_NAME: github-actions-ci
run: >
coveralls --gcov gcov-12
-E ".*/build/.*.[ch]((pp)|(c)|(xx))?$"
-e test
-e 3rd_party
-e toolset
--gcov-options '\-lp' > /dev/null
toolset:
runs-on: ubuntu-22.04
env:
CC: gcc-12
CXX: g++-12
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Configure stuff
run: |
sudo apt install g++-12
mkdir ${{github.workspace}}/build
cd ${{github.workspace}}/build
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/tmp ..
echo "SK_VERSION=$(cat toolset/version)" >> $GITHUB_ENV
echo "PY_VERSION=$(cat python/version_havokpy)" >> $GITHUB_ENV
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build . -j 6
- name: Install
working-directory: ${{github.workspace}}/build
run: |
cmake --build . --target install
cd ../tmp
mv ../LICENSE .
mv ../toolset/README.md .
tar -cvaf ../HavokToolset-v${{env.SK_VERSION}}-linux-amd64.tar.xz --exclude python_module .
cd python_module/lib
tar -cvaf ${{github.workspace}}/HavokPy-v${{env.PY_VERSION}}-linux-amd64.tar.xz .
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: HavokToolset-linux-amd64
path: ${{github.workspace}}/HavokToolset-v${{env.SK_VERSION}}-linux-amd64.tar.xz
retention-days: 5
- name: Upload Python Artifacts
uses: actions/upload-artifact@v4
with:
name: HavokPy-linux-amd64
path: ${{github.workspace}}/HavokPy-v${{env.PY_VERSION}}-linux-amd64.tar.xz
retention-days: 5
build-widle:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Configure stuff
run: |
choco install ninja
mkdir ${{github.workspace}}/build
cd ${{github.workspace}}/build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{github.workspace}} ..
echo "SK_VERSION=$(Get-Content -Path ./toolset/version)" >> $env:GITHUB_ENV
echo "PY_VERSION=$(Get-Content -Path ./python/version_havokpy)" >> $env:GITHUB_ENV
env:
CC: clang
CXX: clang++
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build . -j 6
- name: Install
run: |
cmake --build build --target install
copy LICENSE bin/LICENSE
copy toolset/README.md bin/README.md
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: HavokToolset-v${{env.SK_VERSION}}-win64
path: ${{github.workspace}}/bin
retention-days: 5
- name: Upload Python Artifacts
uses: actions/upload-artifact@v3
with:
name: HavokPy-v${{env.PY_VERSION}}-win64
path: ${{github.workspace}}/python_module/lib
retention-days: 5