-
Notifications
You must be signed in to change notification settings - Fork 16
249 lines (244 loc) · 8.32 KB
/
ci.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
name: CI
on:
pull_request:
push:
branches: [main]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
checks: write
env:
all_physics_backends: rapier2d,rapier3d,avian2d,avian3d
jobs:
ci:
name: CI
needs: [test, clippy, docs]
runs-on: ubuntu-latest
steps:
- name: Done
run: exit 0
test:
name: Tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
rust: [1.79.0, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Ready cache
if: matrix.os == 'ubuntu-latest'
run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libudev-dev
- name: Cache cargo
uses: actions/cache@v1
id: cache
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Test
run: cargo test --verbose --features ${{ env.all_physics_backends }} -- --nocapture
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: Run fmt --all -- --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libudev-dev
- name: Cache cargo
uses: actions/cache@v1
id: cache
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --workspace --all-targets --features ${{ env.all_physics_backends }} --
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.79.0
override: true
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libudev-dev
- name: Cache cargo
uses: actions/cache@v1
id: cache
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run doc tests
uses: actions-rs/cargo@v1
with:
command: test
args: --doc --features ${{ env.all_physics_backends }}
- name: Get package names
id: get-package-names
run: |-
echo "PACKAGE_NAMES=$(
cargo metadata --no-deps --format-version=1 \
| jq '.packages[].name' -r \
| grep -v tnua-demos-crate \
| sort -u \
| xargs -L1 echo --package \
| paste -sd ' '
)" >> "$GITHUB_OUTPUT"
- name: Get features for docs
id: get-features-for-docs
run: |-
echo "FEATURES_FOR_DOCS=$(
cargo metadata --no-deps --format-version=1 \
| jq '.packages[].metadata.docs.rs.features | select(.) | .[]' -r \
| sort -u \
| xargs -L1 echo --features \
| paste -sd ' '
)" >> "$GITHUB_OUTPUT"
- name: Check docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps ${{ steps.get-package-names.outputs.PACKAGE_NAMES }} ${{ steps.get-features-for-docs.outputs.FEATURES_FOR_DOCS }}
docs-and-demos-ghpages:
name: Update Docs and Demos in GitHub Pages
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- uses: jetli/[email protected]
with:
version: 'latest'
- uses: actions-rs/toolchain@v1
with:
target: wasm32-unknown-unknown
toolchain: 1.79.0
override: true
- name: Get package names
id: get-package-names
run: |-
echo "PACKAGE_NAMES=$(
cargo metadata --no-deps --format-version=1 \
| jq '.packages[].name | select(. != "tnua-demos-crate")' -r \
| grep -v tnua-demos-crate \
| sort -u \
| xargs -L1 echo --package \
| paste -sd ' '
)" >> "$GITHUB_OUTPUT"
- name: Get features for docs
id: get-features-for-docs
run: |-
echo "FEATURES_FOR_DOCS=$(
cargo metadata --no-deps --format-version=1 \
| jq '.packages[].metadata.docs.rs.features | select(.) | .[]' -r \
| sort -u \
| xargs -L1 echo --features \
| paste -sd ' '
)" >> "$GITHUB_OUTPUT"
- name: Build docs and demos
env:
GITHUB_REPO: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |-
set -ex
cargo doc --verbose ${{ steps.get-package-names.outputs.PACKAGE_NAMES }} ${{ steps.get-features-for-docs.outputs.FEATURES_FOR_DOCS }}
echo "<meta http-equiv=refresh content=0;url=bevy_tnua/index.html>" > target/doc/index.html
function build_for_backend () {
physics_backend=$1
if [ -z ${2+x} ]; then
demo_suffix=$physics_backend
else
demo_suffix=$physics_backend-$2
fi
special_flags=${@:3}
cargo build \
--package tnua-demos-crate \
--bins \
--release \
$special_flags \
--features ${physics_backend}2d \
--features ${physics_backend}3d \
--features bevy/webgl2 \
--target wasm32-unknown-unknown
for demowasm in $(cd target/wasm32-unknown-unknown/release; ls *.wasm | grep -v -); do
variant=${demowasm%.*}-$demo_suffix
wasm-bindgen target/wasm32-unknown-unknown/release/$demowasm --out-dir target/doc/demos/ --out-name $variant --target web
cat > target/doc/demos/$variant.html <<EOF
<html lang="en-us">
<head>
<script type="module">
import init from './$variant.js';
var res = await init();
res.start();
</script>
</head>
<body>
<script>
document.body.addEventListener("contextmenu", (e) => {
e.preventDefault();
e.stopPropagation();
});
</script>
</body>
</html>
EOF
done
}
build_for_backend rapier
build_for_backend avian
build_for_backend avian 64 --no-default-features --features f64 --features egui
cp -R demos/assets/ target/doc/demos/
- name: Add read permissions
run: |-
chmod --recursive +r target/doc
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: target/doc
deploy-ghpages:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: docs-and-demos-ghpages
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2