-
Notifications
You must be signed in to change notification settings - Fork 10
141 lines (116 loc) · 3.66 KB
/
master.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
---
name: PR Checks
on:
pull_request:
branches:
- '*'
push:
branches:
- master
env:
SOLANA_VERSION: v1.17.7
ANCHOR_VERSION: 0.29.0
jobs:
misc:
name: Miscellaneous checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
id: install-rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: clippy rustfmt miri
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Check formatting
run: cargo fmt --all --check
- name: Cache cargo-deny
id: cache-cargo-deny
uses: actions/cache@v3
with:
path: ~/.cargo/bin/cargo-deny
key: ${{ runner.os }}-${{ steps.install-rust.outputs.cachekey }}-cargo-deny
- name: Install cargo-deny
if: steps.cache-cargo-deny.outputs.cache-hit != 'true'
run: cargo install --locked cargo-deny
- name: Check bans
run: cargo-deny --all-features check bans
- name: Check Clippy (all features)
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -D warnings
- name: Miri tests
run: cargo miri test -- -Z unstable-options --report-time --skip ::anchor
anchor-build:
name: Anchor Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
id: install-rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Anchor
id: cache-anchor
uses: actions/cache@v3
with:
path: |
~/.avm
~/.cargo/bin/avm
~/.cargo/bin/anchor
~/.config/solana/
~/.local/share/solana/
key: ${{ runner.os }}-${{ steps.install-rust.outputs.cachekey }}-${{ env.SOLANA_VERSION }}-${{ env.ANCHOR_VERSION }}-anchor
- name: Install Solana
if: steps.cache-anchor.outputs.cache-hit != 'true'
run: |
set -eux
curl -sSfL https://release.solana.com/$SOLANA_VERSION/install | sh
cp solana/solana-ibc/keypair.json ~/.config/solana/id.json
- name: Setup Solana PATH
run: echo "$HOME/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
- name: Install Anchor
if: steps.cache-anchor.outputs.cache-hit != 'true'
run: |
set -eux
cargo install --git https://github.com/coral-xyz/anchor avm --locked --force
avm install $ANCHOR_VERSION
avm use $ANCHOR_VERSION
- name: Anchor Build (with mocks)
run: anchor build -- --features=mocks
- name: Anchor Test
run: anchor test --skip-build
tests:
name: Rust tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests (default features)
run: cargo test
- name: Run tests (no default features)
run: cargo test --no-default-features
- name: Run tests (all features)
run: cargo test --all-features