-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (86 loc) · 2.88 KB
/
sirc-vm.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
name: SIRC VM
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
defaults:
run:
working-directory: ./sirc-vm
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "--deny warnings"
jobs:
build:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Build
run: cargo build --verbose --release
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
# Currently separate until llvm-cov supports them
- name: Run doctests
run: cargo test --doc --verbose --all-features --workspace
# TODO: Include doc tests in coverage once it is stabilised
# https://github.com/taiki-e/cargo-llvm-cov/issues/2
- name: Run tests
run: cargo llvm-cov --verbose --all-targets --all-features --workspace --codecov --output-path codecov-main.json
- uses: actions/upload-artifact@v4
with:
name: codecov-main
path: ./sirc-vm/codecov-main.json
if-no-files-found: error
examples:
runs-on: ubuntu-latest
strategy:
matrix:
example-name:
[
"basic-video",
"boring",
"byte-sieve",
"faults",
"hardware-exception",
"software-exception",
"store-load",
]
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run ${{ matrix.example-name }} and capture coverage
run: |
export DISPLAY=:99
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
source <(cargo llvm-cov --manifest-path=../../sirc-vm/Cargo.toml show-env --export-prefix)
make clean check
cargo llvm-cov --manifest-path=../../sirc-vm/Cargo.toml report --codecov --output-path codecov-${{ matrix.example-name }}.json
working-directory: ./examples/${{ matrix.example-name }}
- uses: actions/upload-artifact@v4
with:
name: codecov-${{ matrix.example-name }}
path: ./examples/${{ matrix.example-name }}/codecov-${{ matrix.example-name }}.json
if-no-files-found: error
upload-to-codecov:
runs-on: ubuntu-latest
needs: [examples, build]
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
- name: List artifacts
run: ls -la
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: codecov-*.json
fail_ci_if_error: true