-
Notifications
You must be signed in to change notification settings - Fork 17
133 lines (131 loc) · 4.34 KB
/
test.yml
File metadata and controls
133 lines (131 loc) · 4.34 KB
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
name: Test project
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
solana_verion: 1.8.12
anchor_version: 0.18.2
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
node:
[
'npm run test:exchange',
'npm run test:swap',
'npm run test:interest-debt',
'npm run test:isolated-burn',
'npm run test:liquidation',
'npm run test:liquidation-small',
'npm run test:admin',
'npm run test:admin-withdraw',
'npm run test:staking',
'npm run test:staking-multiuser',
'npm run test:multi',
'npm run test:multicollateral',
'npm run test:settlement',
'npm run test:swapline',
'npm run test:swapline-decimal',
'npm run test:vaults',
'npm run test:vaultsliquidation',
'npm run test:vaults-external-collateral',
'npm run test:vaultsliquidation-small',
'npm run test:vaults-interest',
'npm run test:admin-vaults',
'cargo test'
]
steps:
- uses: actions/checkout@v2
- name: test
run: |
echo "${{ matrix.node }}"
- uses: actions/cache@v2
name: Cache Cargo registry + index
id: cache-anchor
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: cargo-${{ runner.os }}-v0000-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/cache@v2
name: Cache Solana Tool Suite
id: cache-solana
with:
path: |
~/.cache/solana/
~/.local/share/solana/
key: solana-${{ runner.os }}-v0000-${{ env.solana_verion }}
- uses: actions/cache@v2
name: Cache target folder
id: cache-programs
with:
path: |
./target
key: solana-${{ runner.os }}-v0000-${{ hashFiles('**/programs/**/*.rs') }}-${{ hashFiles('**/programs/**/*.toml') }}
- uses: actions/cache@v2
name: Cache Node Modules
id: cache-node-modules
with:
path: |
~/.npm/
./node_modules
key: npm-${{ runner.os }}-v0000-${{ hashFiles('**/package-lock.json') }}
- uses: actions/setup-node@v2
with:
node-version: '16'
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: install global mocha
run: |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
npm install -g mocha
npm install -g ts-mocha
npm install -g typescript
npm install -g @project-serum/anchor
ts-mocha -h
- name: install essential
run: |
sudo apt-get update
sudo apt-get install -y pkg-config build-essential libudev-dev
- name: install solana
if: steps.cache-solana.outputs.cache-hit != 'true'
run: |
sh -c "$(curl -sSfL https://release.solana.com/v${{ env.solana_verion }}/install)"
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
solana --version
- name: setup solana
run: |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
solana --version
solana-keygen new
- name: install Anchor
if: steps.cache-anchor.outputs.cache-hit != 'true'
run: |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
cargo install --git https://github.com/project-serum/anchor --tag v${{ env.anchor_version }} anchor-cli --locked
- name: build programs
run: |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
anchor build
- name: build sdk
run: |
npm install
npm run build
working-directory: ./sdk
- name: install
run: |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
npm install
- name: test
run: |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
${{ matrix.node }}