-
Notifications
You must be signed in to change notification settings - Fork 58
62 lines (59 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
on: [pull_request]
name: Continuous integration
jobs:
analyze:
name: Dusk Analyzer
runs-on: core
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
- uses: actions-rs/cargo@v1
with:
command: install
args: --git https://github.com/dusk-network/cargo-dusk-analyzer
- uses: actions-rs/cargo@v1
with:
command: dusk-analyzer
test_nightly:
name: Nightly tests
runs-on: core
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
- run: rustup component add rustfmt
- run: rustup target add wasm32-unknown-unknown
- run: rustup component add rust-src
- run: >
RUSK_PROFILE_PATH="/var/opt/build-cache"
RUSK_KEEP_KEYS="1"
RUSK_BUILD_STATE="1"
RUSK_FORCE_STATE="1"
make test
- name: "Clippy check release"
env:
RUSK_PROFILE_PATH: "/var/opt/build-cache"
run: make clippy
- name: "Upload Rusk Artifact"
uses: actions/upload-artifact@v2
with:
name: rusk-artifact
path: ./target/release/rusk
retention-days: 5
fmt:
name: Rustfmt
runs-on: core
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check