Skip to content

Commit

Permalink
Attempt to clean up MacOS CI yml a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Apr 16, 2024
1 parent cff8b9c commit 79d0471
Showing 1 changed file with 13 additions and 41 deletions.
54 changes: 13 additions & 41 deletions .github/workflows/coq-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
COQ_VERSION: "8.18.0" # pick a version not tested on other platforms
COQCHKEXTRAFLAGS: ""
SKIP_BEDROCK2: "0"
OPAMYES: "true"
OPAMCONFIRMLEVEL: "unsafe-yes"

name: macos

Expand All @@ -38,56 +40,32 @@ jobs:
ocaml-compiler: 4.11.1

- name: Install system dependencies
run: |
set -e
brew install gnu-time gnu-sed coreutils
run: brew install gnu-time gnu-sed coreutils

- name: Install Coq
run: |
set -e
eval $(opam env)
opam update
opam pin add coq ${COQ_VERSION}
env:
OPAMYES: "true"
OPAMCONFIRMLEVEL: "unsafe-yes"

- name: Install js_of_ocaml
run: |
set -e
eval $(opam env)
opam install js_of_ocaml
env:
OPAMYES: "true"
OPAMCONFIRMLEVEL: "unsafe-yes"
run: opam install js_of_ocaml

- name: echo build params
run: |
eval $(opam env)
etc/ci/describe-system-config-macos.sh
run: etc/ci/describe-system-config-macos.sh
- name: deps
run: |
eval $(opam env)
etc/ci/github-actions-make.sh -j2 deps
run: opam exec -- etc/ci/github-actions-make.sh -j2 deps
- name: all
run: |
eval $(opam env)
etc/ci/github-actions-make.sh -j2 all
run: opam exec -- etc/ci/github-actions-make.sh -j2 all
- name: install-standalone-unified-ocaml
run: |
eval $(opam env)
etc/ci/github-actions-make.sh install-standalone-unified-ocaml BINDIR=dist
run: opam exec -- etc/ci/github-actions-make.sh install-standalone-unified-ocaml BINDIR=dist
- name: install-standalone-js-of-ocaml
run: |
eval $(opam env)
etc/ci/github-actions-make.sh install-standalone-js-of-ocaml
run: opam exec -- etc/ci/github-actions-make.sh install-standalone-js-of-ocaml
- name: only-test-amd64-files-lite
run: |
eval $(opam env)
etc/ci/github-actions-make.sh -j2 only-test-amd64-files-lite SLOWEST_FIRST=1
run: opam exec -- etc/ci/github-actions-make.sh -j2 only-test-amd64-files-lite SLOWEST_FIRST=1

- name: upload OCaml files
uses: actions/upload-artifact@v3
Expand All @@ -110,17 +88,11 @@ jobs:
name: standalone-html-macos
path: fiat-html
- name: install
run: |
eval $(opam env)
etc/ci/github-actions-make.sh EXTERNAL_DEPENDENCIES=1 SKIP_COQSCRIPTS_INCLUDE=1 install install-standalone-ocaml
run: opam exec -- etc/ci/github-actions-make.sh EXTERNAL_DEPENDENCIES=1 SKIP_COQSCRIPTS_INCLUDE=1 install install-standalone-ocaml
- name: install-without-bedrock2
run: |
eval $(opam env)
etc/ci/github-actions-make.sh EXTERNAL_DEPENDENCIES=1 SKIP_BEDROCK2=1 install-without-bedrock2 install-standalone-ocaml
run: opam exec -- etc/ci/github-actions-make.sh EXTERNAL_DEPENDENCIES=1 SKIP_BEDROCK2=1 install-without-bedrock2 install-standalone-ocaml
- name: install-dev
run: |
eval $(opam env)
etc/ci/github-actions-make.sh EXTERNAL_REWRITER=1 EXTERNAL_COQPRIME=1 install install-standalone-ocaml
run: opam exec -- etc/ci/github-actions-make.sh EXTERNAL_REWRITER=1 EXTERNAL_COQPRIME=1 install install-standalone-ocaml
- name: display timing info
run: cat time-of-build-pretty.log
- name: display per-line timing info
Expand Down

0 comments on commit 79d0471

Please sign in to comment.