-
-
Notifications
You must be signed in to change notification settings - Fork 6
105 lines (97 loc) · 2.86 KB
/
push.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
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
name: push
on:
push:
branches:
- main
pull_request:
jobs:
renderling-build-shaders:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
- uses: Swatinem/rust-cache@v2
with:
workspaces: shaders
# ensure the shader binaries were properly checked in
- run: rm -rf crates/renderling/src/linkage/*.spv
- run: cd shaders && cargo run --release && cd ..
- run: git diff --exit-code --no-ext-diff crates/renderling/src/linkage
renderling-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
- run: cargo clippy
renderling-build-example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
- run: cargo build -p example
renderling-test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
- run: sudo apt-get -y install mesa-vulkan-drivers libvulkan1 vulkan-tools vulkan-validationlayers
- run: cargo test
env:
RUST_BACKTRACE: 1
- uses: actions/upload-artifact@v4
if: always()
with:
name: test-output-linux
path: test_output/**/*.png
renderling-test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
- run: cargo test
env:
RUST_BACKTRACE: 1
- uses: actions/upload-artifact@v4
if: always()
with:
name: test-output-macos
path: test_output/**/*.png
renderling-test-windows:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
- run: cargo test
env:
RUST_BACKTRACE: 1
- uses: actions/upload-artifact@v4
if: always()
with:
name: test-output-windows
path: test_output/**/*.png
# various linuxes w/ physical gpus
renderling-test-linux-other:
continue-on-error: true
strategy:
matrix:
label: [intel, amd, pi4]
runs-on: ${{ matrix.label }}
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
with:
cache: false
- uses: Swatinem/rust-cache@v2
with:
cache-all-crates: "true"
cache-on-failure: "true"
- run: apt-get -q -y update && apt-get -q -y install mesa-vulkan-drivers libvulkan1 vulkan-tools vulkan-validationlayers
- run: cargo test -j 1 -- --test-threads=1 --nocapture
continue-on-error: ${{ matrix.label == 'pi4' }}
env:
RUST_BACKTRACE: 1
- uses: actions/upload-artifact@v4
if: always()
with:
name: test-output-${{ matrix.label }}
path: test_output/**/*.png