-
Notifications
You must be signed in to change notification settings - Fork 148
71 lines (60 loc) · 1.47 KB
/
coq-macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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