-
Notifications
You must be signed in to change notification settings - Fork 8
54 lines (45 loc) · 1.12 KB
/
lean.yml
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
on:
push:
pull_request:
name: build lean
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: install elan
run: |
set -o pipefail
curl -sSfL https://github.com/leanprover/elan/releases/download/v3.1.1/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz
./elan-init -y --default-toolchain none
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- uses: actions/checkout@v3
- name: Set up olean cache
uses: actions/cache@v3
with:
path: ~/.cache
key: oleans
- name: Configure
working-directory: lean4
run: |
lake exe cache get
- name: Build
working-directory: lean4
run: |
lake build
- name: Save olean cache
working-directory: lean4
run: |
lake exe cache pack
- name: Insert solutions
working-directory: lean4
run: |
python scripts/rewrite_solutions.py
- name: Build
working-directory: lean4
run: |
lake build putnam_with_solutions
- name: Save olean cache
working-directory: lean4
run: |
lake exe cache pack