-
Notifications
You must be signed in to change notification settings - Fork 12
69 lines (58 loc) · 2.05 KB
/
rust.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
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
workspaces: |
shader-reflect
spirq-as
spirq-core
spirq-dis
spirq-spvasm
- name: Cargo Format
id: cargo_format
run: |
cargo fmt -- --check
- name: Cargo Build
id: cargo_build
run: |
cargo build --verbose
- name: Cargo Test
id: cargo_test
run: |
cargo test --verbose
- name: Run SPIR-Q Examples
id: spirq_examples
run: |
cargo run --example gallery > spirq/examples/gallery/main.log
cargo run --example inspect > spirq/examples/inspect/main.log
cargo run --example walk > spirq/examples/walk/main.log
- name: Run shader-reflect
id: shader_reflect
run: |
cargo run -p shader-reflect assets/gallery.frag -o assets/gallery.frag.json --reference-all-resources
cargo run -p shader-reflect assets/gallery.frag.spv -o assets/gallery.frag.spv.json --reference-all-resources
diff assets/gallery.frag.json assets/gallery.frag.spv.json
cargo run -p shader-reflect assets/spirv-spec.frag -o assets/spirv-spec.frag.json
cargo run -p shader-reflect assets/spirv-spec.frag.spv -o assets/spirv-spec.frag.spv.json
diff assets/spirv-spec.frag.json assets/spirv-spec.frag.spv.json
cargo run -p shader-reflect assets/moon.spv -o assets/moon.spv.json --reference-all-resources
- name: Assemble Disassemble Roundtrip
id: cargo_build_and_test
run: |
cargo run -p spirq-as assets/gallery.frag.spvasm -o assets/gallery.frag.spv
cargo run -p spirq-dis assets/gallery.frag.spv -o assets/gallery.frag.spvasm --no-indent
echo git diff --exit-code --binary