Skip to content

Commit d667066

Browse files
committed
ci: checksum binaries
1 parent 6baccce commit d667066

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/checksum.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Checksum
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
CARGO_TERM_COLOR: always
7+
8+
jobs:
9+
ubuntu-build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
submodules: true
17+
- name: Copy checksums.txt
18+
run: cp checksums.txt ci-expected-checksums.txt
19+
- name: Build binaries
20+
run: make docker-build
21+
- name: Checksum binaries
22+
run: sha256sum -c ci-expected-checksums.txt
23+
24+

0 commit comments

Comments
 (0)