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

ci: improve compatibility with ubuntu-22.04 image #1218

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions .github/workflows/ci-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,12 @@ jobs:
run: ls -R

- name: Merge Test Results
# NOTE: --break-system-packages is ok as we're running on emphemeral GH VMs
run: |
pip3 install junitparser junit2html --break-system-packages
pip3 install junitparser junit2html
junitparser merge artifacts/test-results-*/results.xml junit.xml
junit2html junit.xml junit.html
env:
PIP_BREAK_SYSTEM_PACKAGES: 1 # NOTE: we're running on emphemeral GH VMs, install packages globally

- name: Upload Merged Unit Test Results in HTML
uses: actions/upload-artifact@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci-submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,12 @@ jobs:
run: ls -R

- name: Merge Test Results
# NOTE: --break-system-packages is ok as we're running on emphemeral GH VMs
run: |
pip3 install junitparser junit2html --break-system-packages
pip3 install junitparser junit2html
junitparser merge artifacts/test-results-*/results.xml junit.xml
junit2html junit.xml junit.html
env:
PIP_BREAK_SYSTEM_PACKAGES: 1 # NOTE: we're running on emphemeral GH VMs, install packages globally

- name: Upload Merged Unit Test Results in HTML
uses: actions/upload-artifact@v4
Expand Down
Loading