Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Linux Binaries after they're built in CI (Cont'd) #164

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,16 @@ jobs:
runs-on: ubuntu-latest
needs: build-linux
steps:
# - name: Checkout code
# uses: actions/checkout@v4
# We don't technically need to download the coverage-reporter code here
# because in these tests we are downloading finished binaries and using them
# the same way customers do, but this is a convenient way to get all the
# coverage reports in various formats from coverage-reporter's test fixtures
# into our environment, making sure the binaries are tested against all
# supported coverage report formats.
# Removing this step will test each binary only against the latest coverage report
# for coverage-reporter itself, from the current CI run (in cobertura XML format).
- name: Checkout code
uses: actions/checkout@v4

- name: Download x86_64 binary
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -142,8 +150,16 @@ jobs:
runs-on: ubuntu-latest
needs: build-linux
steps:
# - name: Checkout code
# uses: actions/checkout@v4
# We don't technically need to download the coverage-reporter code here
# because in these tests we are downloading finished binaries and using them
# the same way customers do, but this is a convenient way to get all the
# coverage reports in various formats from coverage-reporter's test fixtures
# into our environment, making sure the binaries are tested against all
# supported coverage report formats.
# Removing this step will test each binary only against the latest coverage report
# for coverage-reporter itself, from the current CI run (in cobertura XML format).
- name: Checkout code
uses: actions/checkout@v4

- name: Download aarch64 binary
uses: actions/download-artifact@v4
Expand Down