-
Notifications
You must be signed in to change notification settings - Fork 6
167 lines (138 loc) · 4.88 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
163
164
165
166
167
---
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
( cd solana/trie-geyser-plugin && cargo fmt --all --check )
- name: Check Clippy (all features)
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -D warnings
- name: Check trie-geyser Clippy (all features)
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --manifest-path solana/trie-geyser-plugin/Cargo.toml -- -D warnings
- name: Miri tests
run: |
cargo miri test -- -Z unstable-options --report-time --skip ::anchor
( cd solana/trie-geyser-plugin && cargo miri test -- -Z unstable-options --report-time )
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
- name: Run trie-geyser tests (default features)
run: cd solana/trie-geyser-plugin && cargo test
- name: Run trie-geyser tests (no default features)
run: cd solana/trie-geyser-plugin && cargo test --no-default-features
- name: Run trie-geyser tests (all features)
run: cd solana/trie-geyser-plugin && cargo test --all-features