-
Notifications
You must be signed in to change notification settings - Fork 5
204 lines (179 loc) · 6.83 KB
/
unix.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
name: Unix Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types:
- published
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
LLVM_VERSION: 16
GCC_VERSION: 12
jobs:
env-vars:
name: Get environment variables
runs-on: ubuntu-latest
outputs:
LLVM_VERSION: ${{ env.LLVM_VERSION }}
GCC_VERSION: ${{ env.GCC_VERSION }}
steps:
- run: echo "🤡 GitHub 🤡"
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clang-format
uses: ./.github/actions/install-llvm
with:
version: ${{ env.LLVM_VERSION }}
packages: clang-format-${{ env.LLVM_VERSION }}
- name: Format files
run: find src include -type f -a \( -name "*.cc" -o -name "*.h" \) -print0 | xargs -0 clang-format-${{ env.LLVM_VERSION }} -i
- uses: parkerbxyz/suggest-changes@v1
if: github.event_name == 'pull_request'
with:
comment: 'clang-format fixes:'
- name: Check for differences
run: |
git status --porcelain
git status --porcelain | xargs -I {} -0 test -z \"{}\"
build:
runs-on: ${{ matrix.config.os }}
needs:
- env-vars
strategy:
fail-fast: false
matrix:
config:
- name: macOS x86_64 Release
os: macos-13
preset: clang-release
artifact: macos-x86_64
- name: macOS arm64 Release
os: macos-14
preset: clang-release
artifact: macos-arm64
- name: GCC ${{ needs.env-vars.outputs.GCC_VERSION }} Release
os: ubuntu-latest
preset: gcc-${{ needs.env-vars.outputs.GCC_VERSION }}-release
artifact: linux-amd64
- name: GCC ${{ needs.env-vars.outputs.GCC_VERSION }} Debug
os: ubuntu-latest
preset: gcc-${{ needs.env-vars.outputs.GCC_VERSION }}-debug
- name: Clang ${{ needs.env-vars.outputs.LLVM_VERSION }} Release
os: ubuntu-latest
preset: clang-${{ needs.env-vars.outputs.LLVM_VERSION }}-release
- name: Clang Tidy
os: ubuntu-latest
preset: clang-${{ needs.env-vars.outputs.LLVM_VERSION }}-tidy
- key: Clang ${{ needs.env-vars.outputs.LLVM_VERSION }} Sanitizer
os: ubuntu-latest
preset: clang-${{ needs.env-vars.outputs.LLVM_VERSION }}-sanitizer
env:
BUILDCACHE_COMPRESS: true
BUILDCACHE_DIRECT_MODE: true
BUILDCACHE_ACCURACY: SLOPPY
BUILDCACHE_LUA_PATH: ${{ github.workspace }}/tools
BUILDCACHE_DIR: ${{ github.workspace }}/.buildcache
UBSAN_OPTIONS: halt_on_error=1:abort_on_error=1
ASAN_SYMBOLIZER_PATH: /usr/lib/llvm-${{ needs.env-vars.outputs.LLVM_VERSION }}/bin/llvm-symbolizer
CLICOLOR_FORCE: 1
steps:
- uses: actions/checkout@v4
# ==== INSTALL ====
- name: Update Packages
if: ${{ !startsWith(matrix.config.os, 'macos-') }}
env:
DEBIAN_FRONTEND: noninteractive
run: sudo apt-get update
- name: Install LLVM
if: ${{ !startsWith(matrix.config.os, 'macos-') && startsWith(matrix.config.preset, 'clang') }}
uses: ./.github/actions/install-llvm
with:
version: ${{ env.LLVM_VERSION }}
- name: Install ninja (Ubuntu)
if: ${{ !startsWith(matrix.config.os, 'macos-') }}
env:
DEBIAN_FRONTEND: noninteractive
run: sudo apt-get install -y --no-install-recommends ninja-build
- name: Install ninja (macOS)
if: ${{ startsWith(matrix.config.os, 'macos-') }}
run: brew install ninja
# ==== RESTORE CACHE ====
- name: Restore buildcache Cache
uses: actions/cache/restore@v4
id: restore-buildcache
with:
path: ${{ github.workspace }}/.buildcache
key: buildcache-${{ matrix.config.os }}-${{ matrix.config.preset }}-${{ hashFiles('.pkg') }}-${{ hashFiles('**/*.h') }}-${{ hashFiles('**/*.cc') }}
restore-keys: |
buildcache-${{ matrix.config.os }}-${{ matrix.config.preset }}-${{ hashFiles('.pkg') }}-${{ hashFiles('**/*.h') }}-
buildcache-${{ matrix.config.os }}-${{ matrix.config.preset }}-${{ hashFiles('.pkg') }}-
buildcache-${{ matrix.config.os }}-${{ matrix.config.preset }}-
- name: Restore Dependencies Cache
uses: actions/cache/restore@v4
id: restore-deps-cache
with:
path: ${{ github.workspace }}/deps
key: deps-${{ hashFiles('.pkg') }}
restore-keys: deps-
# ==== BUILD ====
- name: CMake
run: cmake -S . -B build --preset=${{ matrix.config.preset }}
- name: Build
run: |
./build/buildcache/bin/buildcache -z
cmake --build build --target ppr-preprocess ppr-backend footrouting ppr-benchmark ppr-test
./build/buildcache/bin/buildcache -s
- name: Run Tests
run: ./build/ppr-test
# ==== DISTRIBUTION ====
- name: Strip Executables
if: matrix.config.artifact != ''
run: |
strip build/ppr-preprocess
strip build/ppr-backend
strip build/footrouting
- name: Create Distribution
if: matrix.config.artifact != ''
run: |
mkdir ppr
mv build/ppr-preprocess ppr
mv build/ppr-backend ppr
mv build/footrouting ppr
mv ui/web ppr
tar cjf ppr-${{ matrix.config.artifact }}.tar.bz2 ppr
- name: Upload Distribution
if: matrix.config.artifact != ''
uses: actions/upload-artifact@v4
with:
name: ppr-${{ matrix.config.artifact }}
path: ppr-${{ matrix.config.artifact }}.tar.bz2
# ==== RELEASE ====
- name: Upload Release
if: github.event.action == 'published' && matrix.config.artifact != ''
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./ppr-${{ matrix.config.artifact }}.tar.bz2
asset_name: ppr-${{ matrix.config.artifact }}.tar.bz2
asset_content_type: application/x-tar
# ==== SAVE CACHE ====
- name: Save buildcache Cache
if: always() && steps.restore-buildcache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/.buildcache
key: ${{ steps.restore-buildcache.outputs.cache-primary-key }}
- name: Save Dependencies Cache
if: always() && steps.restore-deps-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/deps
key: ${{ steps.restore-deps-cache.outputs.cache-primary-key }}