Skip to content

test: disable ubuntu-24.04-arm usage #1297

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

Merged
merged 1 commit into from
Feb 6, 2025
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
14 changes: 9 additions & 5 deletions .github/workflows/example-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ jobs:
included-as-non-root
]
os: [
ubuntu-24.04, # testing Linux/amd64 platform
ubuntu-24.04-arm # testing Linux/arm64 platform
ubuntu-24.04 # testing Linux/amd64 platform
#
# temporarily disable testing on arm due to reliability issues
# see https://github.com/actions/partner-runner-images/issues for updates
#
# ubuntu-24.04-arm # testing Linux/arm64 platform
]
exclude:
- os: ubuntu-24.04-arm
directory: chrome-for-testing #browser not available for Linux/arm64
# exclude:
# - os: ubuntu-24.04-arm
# directory: chrome-for-testing #browser not available for Linux/arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down