Skip to content

test-binaries

test-binaries #36

Workflow file for this run

name: test-binaries
permissions:
contents: read
actions: read
on:
workflow_run:
workflows: [build]
types:
- completed
jobs:
test_binaries:
name: Test Multi-Arch Binaries
runs-on: ubuntu-22.04
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
arch: [x86_64, aarch64]
steps:
- name: Checkout code
uses: actions/checkout@v4
# Debug step to list artifacts for the run
- name: List available artifacts
run: |
echo "Available artifacts:"
curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.event.workflow_run.id }}/artifacts" | jq '.artifacts[] | .name'
# - name: Download built artifacts (linux binaries)
# uses: actions/download-artifact@v4
# with:
# run-id: ${{ github.event.workflow_run.id }}
# name: coveralls-linux-binaries
# path: ./binaries/
- name: Download built x86_64 binary
uses: actions/download-artifact@v4
with:
run-id: ${{ github.event.workflow_run.id }}
name: coveralls-linux-x86_64
path: ./binaries/
- name: Download built aarch64 binary
uses: actions/download-artifact@v4
with:
run-id: ${{ github.event.workflow_run.id }}
name: coveralls-linux-aarch64
path: ./binaries/
# Debug step to list available artifacts
- name: List available artifacts in ./binaries/
run: ls -la ./binaries/
- name: Download coverage report
uses: actions/download-artifact@v4
with:
name: coverage-report # Assuming this is the name of the artifact from the build.yml run
path: ./coverage/
# Run the binary inside a Docker container with the correct architecture
- name: Test Binary in Architecture-Specific Docker Container
run: |
if [ "${{ matrix.arch }}" = "x86_64" ]; then
make ubuntu-x86_64 && ./binaries/coveralls-linux-x86_64 report --measure --base-path src/coverage_reporter/;
elif [ "${{ matrix.arch }}" = "aarch64" ]; then
make ubuntu-aarch64 && ./binaries/coveralls-linux-aarch64 report --measure --base-path src/coverage_reporter/;
fi
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}