summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRyan Lahfa2024-04-24 11:34:27 +0200
committerRyan Lahfa2024-04-24 16:27:27 +0200
commiteb519e0e56d30763db6ca6667a9f4095061252a4 (patch)
treee763056c0f288e283ed0b9b4273866bb0525d19c /.github
parent1be37966ceea2510b911b119a96246b4657a62fd (diff)
chore(ci): move Lean CI under Nix
As it often happens, the Lean CI under Ubuntu is broken: https://github.com/AeneasVerif/aeneas/actions/runs/8814059410/job/24193132680?pr=135 and blocking PRs. Lean doesn't work nicely under the Nix sandbox, but in a CI context, we can impurely run scripts and use Nix to get our dependencies, e.g. curl or elan in this case. It is still more reliable than letting Ubuntu or GitHub Actions figure out their signing for their APT repositories apparently. Signed-off-by: Ryan Lahfa <ryan.lahfa@inria.fr>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml19
1 files changed, 5 insertions, 14 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index eeb92c51..0ccc74e0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,7 +28,6 @@ jobs:
needs: check_if_skip_duplicate_job
if: needs.check_if_skip_duplicate_job.outputs.should_skip != 'true'
steps:
- #- uses: cachix/install-nix-action@v22
- uses: actions/checkout@v4
- run: nix build -L .#checks.x86_64-linux.aeneas-check-tidiness
- run: nix build -L .#aeneas
@@ -36,22 +35,14 @@ jobs:
- 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
+ # Lean cannot run its tests in the sandbox because `elan` will download things
#- 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
+ lean:
runs-on: [ubuntu-latest]
needs: check_if_skip_duplicate_job
if: needs.check_if_skip_duplicate_job.outputs.should_skip != 'true'
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
+ - uses: actions/checkout@v4
+ - uses: cachix/install-nix-action@v26
+ - run: nix develop --command bash -c "cd tests/lean && make"