Skip to content

Commit

Permalink
Make ARM builds optional in CI
Browse files Browse the repository at this point in the history
Ubuntu can't get their act together and provide reliably accessible
servers. Make the repeatedly failing jobs optional for the time being.

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o authored and danielocfb committed Dec 17, 2024
1 parent ef9245a commit 271afc8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ jobs:
build-aarch64:
name: Build for aarch64
runs-on: ubuntu-latest
# Make this job optional until Ubuntu gets their act together and
# provides usable infrastructure.
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Add apt sources for arm64
Expand Down Expand Up @@ -180,6 +183,9 @@ jobs:
build-armhf:
name: Build for aarch32
runs-on: ubuntu-latest
# Make this job optional until Ubuntu gets their act together and
# provides usable infrastructure.
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Add apt sources for armhf
Expand Down

0 comments on commit 271afc8

Please sign in to comment.