Skip to content

Commit

Permalink
ci: experimental macos
Browse files Browse the repository at this point in the history
The MacOS GH default runners are now
arm64 which is not yet supported by
some of the actions. Mark these
jobs as experimental for now until
the CI is stable again.

Change-Id: I4c4204d4f97627fe0eca045d3244499365054090
  • Loading branch information
lukokr-aarch64 committed May 30, 2024
1 parent 1711593 commit 37dbf6b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
go-tests:
name: Go ${{ matrix.go }} tests ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
Expand All @@ -75,9 +76,11 @@ jobs:
"1.20",
]
os: [ubuntu-latest]
experimental: [false]
include:
- go: "1.13"
os: macos-latest
experimental: true
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -106,14 +109,17 @@ jobs:

python-tests:
name: Python ${{ matrix.python }} tests ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9"]
os: [ubuntu-latest]
experimental: [false]
include:
- python: "3.7"
os: macos-latest
experimental: true
- python: "3.6"
os: ubuntu-20.04
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 37dbf6b

Please sign in to comment.