Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
Added checksum calculation to the build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Cellebyte committed Nov 6, 2023
1 parent beb3017 commit fd44c65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/python-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
cp build/x86_64-unknown-linux-gnu/release/install/netplanner "bin/${LINUX_AMD64_BINARY}"
chmod 0644 "bin/${LINUX_AMD64_BINARY}"
strip "bin/${LINUX_AMD64_BINARY}"
sha256sum "bin/${LINUX_AMD64_BINARY}" > "bin/${LINUX_AMD64_BINARY}.sha256"
- name: E2E Tests
run: |
Expand Down Expand Up @@ -96,6 +97,7 @@ jobs:
fail_on_unmatched_files: true
files: |
./bin/${{ env.LINUX_AMD64_BINARY }}
./bin/${{ env.LINUX_AMD64_BINARY }}.sha256
./dist/*
./build/x86_64-unknown-linux-gnu/release/install/COPYING.txt
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
cp build/x86_64-unknown-linux-gnu/release/install/netplanner "bin/${LINUX_AMD64_BINARY}"
chmod 0644 "bin/${LINUX_AMD64_BINARY}"
strip "bin/${LINUX_AMD64_BINARY}"
sha256sum "bin/${LINUX_AMD64_BINARY}" > "bin/${LINUX_AMD64_BINARY}.sha256"
- name: E2E Tests
run: |
Expand Down Expand Up @@ -93,6 +94,7 @@ jobs:
fail_on_unmatched_files: true
files: |
./bin/${{ env.LINUX_AMD64_BINARY }}
./bin/${{ env.LINUX_AMD64_BINARY }}.sha256
./dist/*
./build/x86_64-unknown-linux-gnu/release/install/COPYING.txt
Expand Down

0 comments on commit fd44c65

Please sign in to comment.