Skip to content

Commit 1f2b517

Browse files
committed
Test res
1 parent 101ec13 commit 1f2b517

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- name: Checkout
13-
uses: actions/checkout@v4
12+
# - name: Checkout
13+
# uses: actions/checkout@v4
1414

15-
- name: Cache apt packages for setup-ocaml
16-
uses: awalsh128/[email protected]
15+
- name: Checkout ReScript
16+
uses: actions/checkout@v4
1717
with:
18-
packages: bubblewrap darcs g++-multilib gcc-multilib mercurial musl-tools rsync
19-
version: v2
18+
repository: https://github.com/rescript-lang/rescript-compiler.git
2019

2120
- name: Setup OCaml
2221
uses: ocaml/[email protected]
@@ -26,11 +25,15 @@ jobs:
2625
allow-prerelease-opam: true
2726
opam-pin: false
2827

29-
- name: Test compile
30-
run: opam exec -- ocamlopt -ccopt -static a.ml
28+
# - name: Test compile
29+
# run: opam exec -- ocamlopt -ccopt -static a.ml
30+
31+
# - name: Check output
32+
# run: file a.out
33+
34+
# - name: Run output
35+
# run: ./a.out
3136

32-
- name: Check output
33-
run: file a.out
37+
- run: opam install . --deps-only
3438

35-
- name: Run output
36-
run: ./a.out
39+
- run: dune build --display quiet --profile static

0 commit comments

Comments
 (0)