-
Notifications
You must be signed in to change notification settings - Fork 8
162 lines (134 loc) · 4.53 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
---
name: PR Checks
on:
pull_request:
branches:
- '*'
push:
branches:
- master
env:
# Rust 1.80 breaks `time` dependency. We have updated *our* dependency but
# Anchor CLI 0.29 uses old `time` which doesn’t compile with new Rust.
# Because of that, we limit the stable Rust version to 1.79.
RUST_STABLE_VERSION: 1.79
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@v4
- name: Install Rust
id: install-rust
uses: dtolnay/rust-toolchain@master
with:
# Pin nightly to specific version to avoid ahash breakage.
# See https://github.com/tkaitchuck/aHash/issues/200
# TODO(mina86): Unpin once situation with ahash is resolved.
# Hopefully we won’t need to patch.
#toolchain: nightly
toolchain: nightly-2024-02-05
components: clippy rustfmt miri
- name: Install Protoc
uses: arduino/setup-protoc@v3
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@v4
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@v4
- name: Install Node JS 16
uses: actions/setup-node@v4
with:
node-version: 16.14.2
cache: "yarn"
- name: Install Rust
id: install-rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_STABLE_VERSION }}
components: rustfmt
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Anchor
id: cache-anchor
uses: actions/cache@v4
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: Installing node modules
run : yarn
- name: Installing ts-mocha and typescript globally
run: yarn global add ts-mocha typescript
- 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@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_STABLE_VERSION }}
components: rustfmt
- name: Install Protoc
uses: arduino/setup-protoc@v3
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