Skip to content

Commit

Permalink
ci: add deterministic tester to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Slug-Boi committed Aug 3, 2024
1 parent cb18df3 commit c09377d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
GOOS=linux GOARCH=amd64 go build -o bin/linux/aion-cli
release_name_linux="aion-cli-$tag-linux"
tar -czvf bin/linux/$release_name_linux.tar.gz bin/linux/aion-cli
cp bin/linux/aion-cli /testing/
GOOS=darwin GOARCH=amd64 go build -o bin/darwin/aion-cli
Expand All @@ -58,6 +59,12 @@ jobs:
# Maybe create a arm build for macos
- name: Test deterministic outcome of solver
working-directory: testing
run: |
chmod +x aion-cli
chmod +x deterministic.sh
./deterministic.sh
- name: Release project
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit c09377d

Please sign in to comment.