Bench garagedoor april2 #4397
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI (Coq, MacOS) | |
on: | |
push: | |
branches: [ master , sp2019latest , v8.6 , v8.8 , v8.10 ] | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
release: | |
types: [published] | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
build: | |
runs-on: macOS-11 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
NJOBS: "2" | |
COQ_VERSION: "8.18.0" # pick a version not tested on other platforms | |
COQCHKEXTRAFLAGS: "" | |
SKIP_BEDROCK2: "0" | |
name: macos | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 4.11.1 | |
- name: Install system dependencies | |
run: | | |
set -e | |
brew install gnu-time 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" | |
- name: echo build params | |
run: | | |
eval $(opam env) | |
etc/ci/describe-system-config-macos.sh | |
- name: deps | |
run: | | |
eval $(opam env) | |
/usr/bin/time -v make -j src/Bedrock/End2End/X25519/GarageDoorTop.vo |