Nix build system #242
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: amd64-linux-main-proof | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
proof-all: | |
runs-on: [self-hosted, linux, X64, amd64-main] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- uses: DeterminateSystems/magic-nix-cache-action@v4 | |
- name: enter nix shell | |
run: nix --experimental-features 'nix-command flakes' develop '.#easycrypt' | |
- name: extract and check | |
run: make -j$JOBS -C proof/ CI=1 default | |
- name: dist | |
run: ./scripts/ci/releaser/jdist-proof | |
- name: print logs | |
run: make -C proof/ CI=1 reporter | |
- name: return error if there are any errors | |
run: make -C proof/ CI=1 err | |
- name: libjade-logs-proof.tar.gz - contains non-empty logs and errors | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libjade-logs-proof.tar.gz | |
path: proof/libjade-logs-proof.tar.gz | |
- name: libjade-dist-proof.tar.gz - contains all EasyCrypt files and test.config | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libjade-dist-proof.tar.gz | |
path: libjade-dist-proof.tar.gz | |