Hakyber on EasyCrypt/dev #5
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: Hakyber on EasyCrypt/dev | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
env: | |
OPAMROOT: /home/charlie/.opam | |
OPAMYES: true | |
OPAMJOBS: 2 | |
ECRJOBS: 2 | |
jobs: | |
ec: | |
name: Hakyber on EasyCrypt/dev | |
runs-on: ubuntu-20.04 | |
container: | |
image: ghcr.io/easycrypt/ec-build-box | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Compile & Install EasyCrypt | |
run: | | |
opam pin --dev-repo add -n easycrypt https://github.com/EasyCrypt/easycrypt.git | |
opam install -v easycrypt | |
- name: Detect SMT provers | |
run: | | |
opam exec -- easycrypt why3config | |
- name: Compile Project | |
run: | | |
opam exec -- make checkec |