forked from mit-plv/fiat-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (76 loc) · 2.1 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: CI (Coq, MacOS)
on:
push:
branches: [ master , sp2019latest , v8.6 , v8.8 , v8.10 ]
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *'
jobs:
build-macos:
runs-on: macOS-11
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
NJOBS: "2"
COQ_VERSION: "8.15.2" # minimal major version required for bedrock2 components
COQCHKEXTRAFLAGS: ""
SKIP_BEDROCK2: "0"
steps:
- uses: actions/checkout@v3
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: echo build params
run: |
eval $(opam env)
etc/ci/describe-system-config-macos.sh
- name: deps
run: |
eval $(opam env)
etc/ci/github-actions-make.sh -j2 deps
- name: all
run: |
eval $(opam env)
etc/ci/github-actions-make.sh -j2 all
- 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
- name: upload OCaml files
uses: actions/upload-artifact@v3
with:
name: ExtractionOCaml
path: src/ExtractionOCaml
- name: display timing info
run: cat time-of-build-pretty.log
- name: display per-line timing info
run: etc/ci/github-actions-display-per-line-timing.sh
# - name: upload timing and .vo info
# uses: actions/upload-artifact@v3
# with:
# name: build-outputs
# path: .
# if: always ()
# - name: validate
# run: |
# eval $(opam env)
# make TIMED=1 validate COQCHKFLAGS="-o ${COQCHKEXTRAFLAGS}"
# if: github.event_name != 'pull_request'