-
Notifications
You must be signed in to change notification settings - Fork 10
147 lines (129 loc) · 5.58 KB
/
test.yml
File metadata and controls
147 lines (129 loc) · 5.58 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: Test
on: [push]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@master
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
- name: Initialize WASM build environment
run: |
rustup update stable
rustup toolchain install nightly-2021-03-10
rustup default nightly-2021-03-10
rustup target add wasm32-unknown-unknown --toolchain nightly-2021-03-10
- name: Run cargo check
run: cargo +nightly-2021-03-10 check
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@master
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
- name: Initialize WASM build environment
run: |
rustup update stable
rustup toolchain install nightly-2021-03-10
rustup default nightly-2021-03-10
rustup target add wasm32-unknown-unknown --toolchain nightly-2021-03-10
# Runs integration tests in the runtime/tests folder
- name: Run Integration Tests across all runtime modules
run: |
cargo +nightly-2021-03-10 test -p datahighway-runtime
# Runs unit tests in each runtime module of the pallet folder
- name: Run Unit Tests in each runtime module
run: |
cargo +nightly-2021-03-10 test -p roaming-operators &&
cargo +nightly-2021-03-10 test -p roaming-networks &&
cargo +nightly-2021-03-10 test -p roaming-organizations &&
cargo +nightly-2021-03-10 test -p roaming-network-servers &&
cargo +nightly-2021-03-10 test -p roaming-devices &&
cargo +nightly-2021-03-10 test -p roaming-routing-profiles &&
cargo +nightly-2021-03-10 test -p roaming-service-profiles &&
cargo +nightly-2021-03-10 test -p roaming-accounting-policies &&
cargo +nightly-2021-03-10 test -p roaming-agreement-policies &&
cargo +nightly-2021-03-10 test -p roaming-network-profiles &&
cargo +nightly-2021-03-10 test -p roaming-device-profiles &&
cargo +nightly-2021-03-10 test -p roaming-sessions &&
cargo +nightly-2021-03-10 test -p roaming-billing-policies &&
cargo +nightly-2021-03-10 test -p roaming-charging-policies &&
cargo +nightly-2021-03-10 test -p roaming-packet-bundles &&
cargo +nightly-2021-03-10 test -p mining-setting-token &&
cargo +nightly-2021-03-10 test -p mining-setting-hardware &&
cargo +nightly-2021-03-10 test -p mining-rates-token &&
cargo +nightly-2021-03-10 test -p mining-rates-hardware &&
cargo +nightly-2021-03-10 test -p mining-sampling-token &&
cargo +nightly-2021-03-10 test -p mining-sampling-hardware &&
cargo +nightly-2021-03-10 test -p mining-eligibility-token &&
cargo +nightly-2021-03-10 test -p mining-eligibility-hardware &&
cargo +nightly-2021-03-10 test -p mining-eligibility-proxy &&
cargo +nightly-2021-03-10 test -p mining-claims-token &&
cargo +nightly-2021-03-10 test -p mining-claims-hardware &&
cargo +nightly-2021-03-10 test -p mining-execution-token &&
cargo +nightly-2021-03-10 test -p exchange-rate
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@master
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install nightly toolchain for rustfmt
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
# nightly-2021-03-10-x86_64-unknown-linux-gnu
- name: Initialize WASM build environment
run: |
rustup update stable
rustup toolchain install nightly-2021-03-10
rustup default nightly-2021-03-10
rustup target add wasm32-unknown-unknown --toolchain nightly-2021-03-10
# Ignore use of Rust Linting since rearranging makes it challenging to update to latest Substrate
# - name: Run cargo fmt
# run: |
# rustup component add rustfmt --toolchain nightly-2021-03-10-x86_64-unknown-linux-gnu
# cargo +nightly-2021-03-10 fmt --all -- --check
# Ignore use of Clippy until a clippy.toml file may be used. See README.md
# - name: Run cargo clippy
# # uses: actions-rs/cargo@v1
# # with:
# # command: clippy
# # args: --release -- -D warnings
# # FIXME - temporary fix below. See https://github.com/rust-lang/rust-clippy/issues/5094#issuecomment-579116431
# run: |
# rustup component add clippy --toolchain nightly-2021-03-10-x86_64-unknown-linux-gnu
# rustup component add clippy-preview --toolchain nightly-2021-03-10-x86_64-unknown-linux-gnu
# cargo +nightly-2021-03-10 clippy-preview -Zunstable-options