Skip to content

Commit 776928a

Browse files
committed
remove unneded build step and output diff summary
1 parent 4522617 commit 776928a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,18 @@ jobs:
6060
# cargo check -p clarity --no-default-features
6161
cargo check -p stacks-common --no-default-features
6262
## end cargo test
63-
- name: Build stacks-inspect
64-
id: build_stacks-inspect
65-
run: |
66-
cargo build --bin stacks-inspect
63+
# - name: Build stacks-inspect
64+
# id: build_stacks-inspect
65+
# run: |
66+
# cargo build --bin stacks-inspect
6767

6868
- name: Dump constants JSON
6969
id: consts-dump
7070
run: |
7171
cargo run --bin stacks-inspect -- dump-consts | tee out.json
7272
73-
- name: Set expected constants JSON
73+
- name: Compare expected constants JSON
7474
id: expects-json
7575
run: |
76-
diff out.json ./sample/expected_consts.json
76+
# if there is a diff, return will be non-zero
77+
diff out.json ./sample/expected_consts.json >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)