Skip to content

Commit 33e9ac8

Browse files
authored
Use etc/ci/github-actions-make.sh on alpine (#1838)
To display more errors nicely. We might have to revert if we get non-deterministic timeouts on alpine though
1 parent 0698071 commit 33e9ac8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/coq-alpine.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242
- name: chroot build params
4343
shell: alpine.sh {0}
4444
run: etc/ci/describe-system-config.sh
45-
- name: make deps
45+
- name: etc/ci/github-actions-make.sh deps
4646
shell: alpine.sh {0}
47-
run: make TIMED=1 TIMING=1 -j2 deps
47+
run: etc/ci/github-actions-make.sh -j2 deps
4848
- name: all-except-generated-and-js-of-ocaml
4949
shell: alpine.sh {0}
50-
run: make TIMED=1 TIMING=1 -j2 CAMLEXTRAFLAGS="-ccopt -static" all-except-generated-and-js-of-ocaml
50+
run: etc/ci/github-actions-make.sh -j2 CAMLEXTRAFLAGS="-ccopt -static" all-except-generated-and-js-of-ocaml
5151
- name: install-standalone-unified-ocaml
5252
shell: alpine.sh {0}
5353
run: make install-standalone-unified-ocaml BINDIR=dist
@@ -78,7 +78,7 @@ jobs:
7878
# if: always ()
7979
- name: generated-files
8080
shell: alpine.sh {0}
81-
run: make TIMED=1 TIMING=1 -j2 generated-files
81+
run: etc/ci/github-actions-make.sh -j2 generated-files
8282
- run: tar -czvf generated-files.tgz fiat-*/
8383
if: ${{ failure() }}
8484
- name: upload generated files
@@ -89,7 +89,7 @@ jobs:
8989
if: ${{ failure() }}
9090
- name: standalone-haskell
9191
shell: alpine.sh {0}
92-
run: make TIMED=1 TIMING=1 -j1 standalone-haskell GHCFLAGS='+RTS -M7G -RTS'
92+
run: etc/ci/github-actions-make.sh -j1 standalone-haskell GHCFLAGS='+RTS -M7G -RTS'
9393
- name: upload Haskell files
9494
uses: actions/upload-artifact@v3
9595
with:
@@ -98,7 +98,7 @@ jobs:
9898
if: always ()
9999
- name: only-test-amd64-files-lite
100100
shell: alpine.sh {0}
101-
run: make TIMED=1 TIMING=1 -j2 only-test-amd64-files-lite SLOWEST_FIRST=1
101+
run: etc/ci/github-actions-make.sh -j2 only-test-amd64-files-lite SLOWEST_FIRST=1
102102
- name: install
103103
shell: alpine.sh {0}
104104
run: sudo make EXTERNAL_DEPENDENCIES=1 SKIP_COQSCRIPTS_INCLUDE=1 install install-standalone-ocaml

0 commit comments

Comments
 (0)