-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (41 loc) · 1.19 KB
/
Copy pathci.yml
File metadata and controls
53 lines (41 loc) · 1.19 KB
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
name: CI
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
check:
name: Build, Test, Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
targets: wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- name: Install system dependencies
run: sudo apt-get install -y clang lld wabt
- name: Install kani-verifier
run: cargo install --locked kani-verifier && cargo kani setup
- name: Build
run: cargo build --all-targets
- name: Test (optimized)
run: cargo test
env:
HERKOS_OPTIMIZE: "1"
- name: Test (unoptimized)
run: cargo test
env:
HERKOS_OPTIMIZE: "0"
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Format check
run: cargo fmt --check
- name: Example (C → Wasm → Rust)
run: ./examples/c-to-wasm-to-rust/run.sh
- name: Example (Inter-Module Lending)
run: ./examples/inter-module-lending/run.sh