Skip to content

Commit

Permalink
Keep working around one-off pre-release testing issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
afinetooth committed Sep 20, 2024
1 parent bfcf23a commit 8929c0b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test_coverage_reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,22 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ matrix.arch }}" = "x86_64" ]; then
gh run download 10950279748 --repo coverallsapp/coverage-reporter --name coveralls-linux-x86_64 --dir ./;
gh run download 10950279748 --repo coverallsapp/coverage-reporter --name coveralls-linux-x86_64 --dir ./;
elif [ "${{ matrix.arch }}" = "aarch64" ]; then
gh run download 10950279748 --repo coverallsapp/coverage-reporter --name coveralls-linux-aarch64 --dir ./;
gh run download 10950279748 --repo coverallsapp/coverage-reporter --name coveralls-linux-aarch64 --dir ./;
fi
# Debugging: List files after download
- name: List files
run: ls -l

- name: Unzip and run the correct binary
run: |
if [ "${{ matrix.arch }}" = "x86_64" ]; then
unzip coveralls-linux-x86_64.zip;
unzip coveralls-linux-x86_64.zip || echo "File not found: coveralls-linux-x86_64.zip";
./coveralls-linux-x86_64;
elif [ "${{ matrix.arch }}" = "aarch64" ]; then
unzip coveralls-linux-aarch64.zip;
unzip coveralls-linux-aarch64.zip || echo "File not found: coveralls-linux-aarch64.zip";
./coveralls-linux-aarch64;
fi
env:
Expand Down

0 comments on commit 8929c0b

Please sign in to comment.