File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 6
6
workflow_call :
7
7
# # for testing workflow. remove for PR
8
8
workflow_dispatch :
9
-
9
+
10
10
jobs :
11
11
check-consts :
12
12
name : Check the constants from stacks-inspect
@@ -34,17 +34,15 @@ jobs:
34
34
# if: ${{ false }}
35
35
id : cargo_check_clarity
36
36
run : |
37
- cargo check -p clarity --no-default-features
37
+ RUSTFLAGS="" cargo check -p clarity --no-default-features
38
38
39
39
- name : Cargo Check
40
40
id : cargo_check
41
- shell : bash
42
41
run : |
43
42
cargo check
44
43
45
44
- name : Cargo Check (monitoring_prom)
46
45
id : cargo_check_prom
47
- shell : bash
48
46
run : |
49
47
cargo check --features monitoring_prom
50
48
@@ -57,19 +55,16 @@ jobs:
57
55
58
56
- name : Cargo Check (stacks-common)
59
57
id : cargo_check_stacks-common
60
- shell : bash
61
58
run : |
62
59
cargo check -p stacks-common --no-default-features
63
60
64
61
- name : Dump constants JSON
65
62
id : consts-dump
66
- shell : bash
67
63
run : |
68
64
cargo run --bin stacks-inspect -- dump-consts | tee out.json
69
65
70
66
- name : Compare expected constants JSON
71
67
id : expects-json
72
- shell : bash
73
68
run : |
74
69
# if there is a diff, return will be non-zero
75
70
diff out.json ./sample/expected_consts.json >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments