-
Notifications
You must be signed in to change notification settings - Fork 22
95 lines (75 loc) · 2.25 KB
/
ci.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clone fixpoint
run: |
git clone https://github.com/ucsd-progsys/liquid-fixpoint
echo "fixpoint_hash=$(git -C liquid-fixpoint/ rev-parse HEAD)" >> $GITHUB_ENV
echo "local_binaries_path=$(pwd)/local-binaries" >> $GITHUB_ENV
- name: Cache fixpoint
uses: actions/[email protected]
id: cache-fixpoint
with:
path: local-binaries
key: fixpoint-bin-${{ runner.os }}-${{ env.fixpoint_hash }}
- name: Install Haskell
if: steps.cache-fixpoint.outputs.cache-hit != 'true'
uses: haskell/actions/[email protected]
with:
enable-stack: true
stack-version: "latest"
- name: Compile fixpoint
if: steps.cache-fixpoint.outputs.cache-hit != 'true'
run: |
cd liquid-fixpoint
stack install --fast --local-bin-path "$local_binaries_path"
- name: Install Z3
uses: cda-tum/[email protected]
with:
version: 4.12.1
platform: linux
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Add Fixpoint to the path
run: |
echo "$local_binaries_path" >> $GITHUB_PATH
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Build
run: |
cargo build
- name: Run tests
run: |
which fixpoint && cargo xtask test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Rust rustfmt
run: cargo fmt --check
- name: Install codesync
run: cargo install --git https://github.com/nilehmann/codesync
- name: Run codesync
run: codesync check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Add clippy
run: rustup component add clippy
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Run clippy
uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}