blob: eeb92c514000131181a3d1605de599b2e5adbfde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
on:
push:
branches-ignore: [ '_**' ]
pull_request:
workflow_dispatch:
# Minimum permissions required by skip-duplicate-actions
permissions:
actions: write
contents: read
jobs:
# Avoid `push` and `pull_request` running the same job twice
check_if_skip_duplicate_job:
runs-on: [self-hosted, linux, nix]
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
skip_after_successful_duplicate: 'true'
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
nix:
#runs-on: ubuntu-latest
runs-on: [self-hosted, linux, nix]
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
- 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]
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
|