Add packaging for standalone files #3922
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: | |
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.18.0" # pick a version not tested on other platforms | |
COQCHKEXTRAFLAGS: "" | |
SKIP_BEDROCK2: "0" | |
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: 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: package standalone files | |
run: | | |
eval $(opam env) | |
etc/ci/github-actions-make.sh package-standalone-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 | |
- name: upload OCaml files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ExtractionOCaml | |
path: src/ExtractionOCaml | |
- name: upload standalone files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: standalone-macos | |
path: standalone.tar.gz | |
- 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' |