Skip to content

Commit e08b31b

Browse files
committed
ARM
1 parent f10a767 commit e08b31b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,24 @@ on:
66

77
jobs:
88
test:
9-
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
os: [
13+
ubuntu-latest, # x64
14+
buildjet-2vcpu-ubuntu-2204-arm, # ARM
15+
]
16+
17+
runs-on: ${{matrix.os}}
1018

1119
steps:
1220
- name: Checkout ReScript
1321
uses: actions/checkout@v4
1422
with:
1523
repository: rescript-lang/rescript-compiler
1624

25+
- run: sudo apt update
26+
1727
- name: Setup OCaml
1828
uses: ocaml/[email protected]
1929
with:

0 commit comments

Comments
 (0)