-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into afromher_shifts
- Loading branch information
Showing
228 changed files
with
34,347 additions
and
20,545 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
on: | ||
push: | ||
branches-ignore: [ '_**' ] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
nix: | ||
#runs-on: ubuntu-latest | ||
runs-on: [self-hosted, linux, nix] | ||
steps: | ||
#- uses: cachix/install-nix-action@v22 | ||
- uses: actions/checkout@v4 | ||
- run: nix build -L .#aeneas | ||
- run: nix build -L .#checks.x86_64-linux.aeneas-tests | ||
- run: nix build -L .#checks.x86_64-linux.aeneas-verify-fstar | ||
- run: nix build -L .#checks.x86_64-linux.aeneas-verify-coq | ||
- run: nix build -L .#checks.x86_64-linux.aeneas-verify-hol4 | ||
# Lean doesn't work with Nix | ||
#- run: nix build -L .#checks.x86_64-linux.aeneas-verify-lean | ||
lean: # Lean isn't supported by Nix, so we put it in a different job | ||
runs-on: [ubuntu-latest] | ||
steps: | ||
# Install curl | ||
- run: sudo apt update && sudo apt install curl | ||
# Install Elan (https://leanprover-community.github.io/install/linux.html) and Lean in | ||
# non-interactive mode: | ||
- run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | bash -s -- -y | ||
# Checkout the repo and download it to the runner | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
# Verify - note that we need to update the environment with `source` so | ||
# that the lake binary is in the path. | ||
- run: source ~/.profile && cd tests/lean && make |
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
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
Oops, something went wrong.