diff options
author | Son Ho | 2023-11-10 16:54:34 +0100 |
---|---|---|
committer | Son Ho | 2023-11-10 16:54:34 +0100 |
commit | e3dc6001c953cd3a292326672762b4dfdbbb933c (patch) | |
tree | 6fea9183f44087c4514ef49b5187ae00164c197e /.github/workflows | |
parent | 8471e87b2b1b8123f15f5613e633daf68ccf94dc (diff) |
Update the ci.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a67a2aed..d8a91aa7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,12 @@ jobs: - run: nix build -L .#checks.x86_64-linux.aeneas-verify-coq #- run: nix build -L .#checks.x86_64-linux.aeneas-verify-lean - run: nix build -L .#checks.x86_64-linux.aeneas-verify-hol4 - # Lean isn't supported by Nix, so we need to add extra steps + lean: # Lean isn't supported by Nix, so we need to add extra steps + runs-on: [self-hosted, linux] + steps: # Install Elan (https://leanprover-community.github.io/install/linux.html) - run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh + # We need make + - run: sudo apt-get update && sudo apt-get install make # Verify - run: cd tests/lean && make |