Skip to content
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
7 changes: 6 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
test:
name: Build and test
timeout-minutes: 60
# NOTE: self-hosted riscv64 runners are experimental and may be flaky.
# Do not block CI on failures from this platform for now.
continue-on-error: ${{ contains(matrix.os, 'self-hosted') }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -74,6 +77,8 @@ jobs:
os: ubuntu-24.04
- target: powerpc64le-unknown-linux-gnu
os: ubuntu-24.04-ppc64le
- target: riscv64gc-unknown-linux-gnu
os: ["self-hosted", "linux", "riscv64"]
- target: riscv64gc-unknown-linux-gnu
os: ubuntu-24.04
- target: s390x-unknown-linux-gnu
Expand Down Expand Up @@ -173,7 +178,7 @@ jobs:
shell: bash

- name: Verify API list
if: matrix.os == 'ubuntu-24.04'
if: matrix.os == 'ubuntu-24.04' || contains(matrix.os, 'self-hosted')
run: python3 etc/update-api-list.py --check

# Non-linux tests just use our raw script
Expand Down
Loading