Skip to content

ci: enable experimental ocaml workflow on aarch64 #6631

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
13 changes: 12 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,25 @@ concurrency: # On new push, cancel old workflows from the same PR, branch or tag
jobs:
ocaml-tests:
name: Run OCaml tests
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
runs-on: ["ubuntu-22.04"]
experimental: [false]
include:
- runs-on: "ubuntu-22.04-arm"
experimental: true

continue-on-error: ${{ matrix.experimental }}
runs-on: ${{ matrix.runs-on }}
permissions:
contents: read
env:
# Ensure you also update test-sdk-builds
# when changing this value, to keep builds
# consistent
XAPI_VERSION: "v0.0.0"

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
Loading