[CI] Fix CI caching for Cerberus and Cerberus-CHERI (#864) #73
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: CN Benchmarks | |
on: | |
push: | |
branches: | |
- master | |
env: | |
CERBERUS_IMAGE_ID: ghcr.io/rems-project/cerberus/cn:release | |
permissions: | |
# deployments permission to deploy GitHub pages website | |
deployments: write | |
# contents permission to update benchmark contents in gh-pages branch | |
contents: write | |
# cancel in-progress job when a new push is performed | |
concurrency: | |
group: ci-bench-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
benchmark: | |
name: Performance benchmarks | |
strategy: | |
matrix: | |
# version: [4.12.0, 4.14.1] | |
version: [4.14.1] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Cerberus | |
uses: actions/checkout@v4 | |
- name: System dependencies (Ubuntu) | |
run: | | |
sudo apt-get install build-essential libgmp-dev z3 opam jq | |
- name: Restore OPAM cache | |
id: cache-opam-restore | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/.opam | |
key: ${{ matrix.version }} | |
- name: Setup OPAM | |
if: steps.cache-opam-restore.outputs.cache-hit != 'true' | |
run: | | |
opam init --yes --no-setup --shell=sh --compiler=${{ matrix.version }} | |
eval $(opam env --switch=${{ matrix.version }}) | |
opam repo add --yes --this-switch coq-released https://coq.inria.fr/opam/released | |
- name: Save OPAM cache | |
uses: actions/cache/save@v4 | |
if: steps.cache-opam-restore.outputs.cache-hit != 'true' | |
with: | |
path: ~/.opam | |
key: ${{ matrix.version }} | |
- name: Install Cerberus | |
run: | | |
opam switch ${{ matrix.version }} | |
eval $(opam env --switch=${{ matrix.version }}) | |
opam pin --yes --no-action add cerberus-lib . | |
opam pin --yes --no-action add cerberus . | |
opam install --yes cerberus | |
- name: Download cvc5 release | |
uses: robinraju/release-downloader@v1 | |
with: | |
repository: cvc5/cvc5 | |
tag: cvc5-1.2.0 | |
fileName: cvc5-Linux-x86_64-static.zip | |
- name: Unzip and install cvc5 | |
run: | | |
unzip cvc5-Linux-x86_64-static.zip | |
chmod +x cvc5-Linux-x86_64-static/bin/cvc5 | |
sudo cp cvc5-Linux-x86_64-static/bin/cvc5 /usr/local/bin/ | |
- name: Install CN | |
run: | | |
opam switch ${{ matrix.version }} | |
eval $(opam env --switch=${{ matrix.version }}) | |
opam pin --yes --no-action add cn . | |
opam install --yes cn ocamlformat.0.26.2 | |
- name: Run benchmarks | |
run: | | |
opam switch ${{ matrix.version }} | |
eval $(opam env --switch=${{ matrix.version }}) | |
cd tests; SOLVER='z3' ./run-ci-benchmarks.sh; SOLVER='cvc5' ./run-ci-benchmarks.sh | |
cd .. | |
- name: Store benchmark result | |
uses: GaloisInc/github-action-benchmark@47b8b8960c7ed9a55d1db3326ae1ea69aa302380 | |
with: | |
name: CN Benchmarks | |
tool: 'customSmallerIsBetter' | |
output-file-path: | | |
{ | |
"z3": "tests/benchmark-data-z3.json", | |
"cvc5": "tests/benchmark-data-cvc5.json" | |
} | |
# Access token to deploy GitHub Pages branch | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
# Push and deploy GitHub pages branch automatically | |
auto-push: true |