Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
shore committed May 7, 2024
1 parent f1b3ecd commit f48563b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/self-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,16 @@ jobs:
- { reproducible: nope, want: success }
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: select OS value
run: |
case "${{ runner.os }}" in
macOS) echo "SELECTED_OS=darwin" >> "$GITHUB_ENV" ;;
Linux) echo "SELECTED_OS=linux" >> "$GITHUB_ENV" ;;
esac
- uses: ./self-test
with:
product_name: "example-app-${{ github.job }}-${{ matrix.reproducible }}"
os: ${{ runner.os }}
os: ${{ env.SELECTED_OS }}
reproducible: ${{ matrix.reproducible }}
assert: ${{ matrix.want }}
when: "the binary files are identical and there are no other files in the zip"
Expand Down

0 comments on commit f48563b

Please sign in to comment.