Skip to content

Commit 5649ffa

Browse files
committed
disable RUSTFLAGS for clarity step
1 parent 60b0e9f commit 5649ffa

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/core-build-tests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_call:
77
## for testing workflow. remove for PR
88
workflow_dispatch:
9-
9+
1010
jobs:
1111
check-consts:
1212
name: Check the constants from stacks-inspect
@@ -34,17 +34,15 @@ jobs:
3434
# if: ${{ false }}
3535
id: cargo_check_clarity
3636
run: |
37-
cargo check -p clarity --no-default-features
37+
RUSTFLAGS="" cargo check -p clarity --no-default-features
3838
3939
- name: Cargo Check
4040
id: cargo_check
41-
shell: bash
4241
run: |
4342
cargo check
4443
4544
- name: Cargo Check (monitoring_prom)
4645
id: cargo_check_prom
47-
shell: bash
4846
run: |
4947
cargo check --features monitoring_prom
5048
@@ -57,19 +55,16 @@ jobs:
5755

5856
- name: Cargo Check (stacks-common)
5957
id: cargo_check_stacks-common
60-
shell: bash
6158
run: |
6259
cargo check -p stacks-common --no-default-features
6360
6461
- name: Dump constants JSON
6562
id: consts-dump
66-
shell: bash
6763
run: |
6864
cargo run --bin stacks-inspect -- dump-consts | tee out.json
6965
7066
- name: Compare expected constants JSON
7167
id: expects-json
72-
shell: bash
7368
run: |
7469
# if there is a diff, return will be non-zero
7570
diff out.json ./sample/expected_consts.json >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)