-
Notifications
You must be signed in to change notification settings - Fork 150
47 lines (39 loc) · 1.24 KB
/
dusk_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
on:
pull_request:
push:
branches: master
name: Continuous integration
jobs:
analyze:
name: Code Analysis
uses: dusk-network/.github/.github/workflows/code-analysis.yml@main
with:
clippy_default: false
clippy_args: --features=rkyv/size_32
dusk_analyzer:
name: Dusk Analyzer
uses: dusk-network/.github/.github/workflows/dusk-analysis.yml@main
build_docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make doc
- run: make doc-internal
build_no_std:
name: Build no_std
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
- run: rustup target add thumbv6m-none-eabi
- uses: Swatinem/rust-cache@v2
- name: Build project with alloc
run: cargo build --release --no-default-features --features alloc --target thumbv6m-none-eabi
- name: Build project without alloc
run: cargo build --release --no-default-features --target thumbv6m-none-eabi
ci:
name: Test with all features
uses: dusk-network/.github/.github/workflows/codecov.yml@4bb5b26ea8f0207cf1219465559cc91b34651ab5
with:
codecov_token: ${{secrets.CODECOV_TOKEN}}