-
Notifications
You must be signed in to change notification settings - Fork 42
126 lines (109 loc) · 3.43 KB
/
programs-e2e.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
name: E2E
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
SOLANA_VERSION: "1.9.12"
jobs:
sdk:
runs-on: ubuntu-latest
name: Build the SDK
defaults:
run:
shell: nix shell .#env-anchor-idls --command bash {0}
steps:
- uses: actions/checkout@v3
# Install Cachix
- uses: cachix/install-nix-action@v17
- name: Setup Cachix
uses: cachix/cachix-action@v10
with:
name: goki
extraPullNames: quarry, saber
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Parse IDLs
run: ./scripts/parse-idls.sh
- name: Setup Node
uses: actions/setup-node@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Yarn Cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- name: Install Yarn dependencies
run: yarn install
- run: ./scripts/generate-idl-types.sh
- run: yarn build
- run: yarn typecheck
- run: yarn lint
- run: yarn dlx @yarnpkg/doctor
integration-tests:
runs-on: ubuntu-latest
defaults:
run:
shell: nix shell .#env-anchor-build --command bash {0}
steps:
- uses: actions/checkout@v3
# Install Cachix
- uses: cachix/install-nix-action@v17
- name: Setup Cachix
uses: cachix/cachix-action@v10
with:
name: goki
extraPullNames: quarry, saber
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y pkg-config build-essential libudev-dev
- name: Install Rustup
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- uses: Swatinem/rust-cache@v1
# Install Solana
- name: Cache Solana binaries
id: solana-cache
uses: actions/cache@v3
with:
path: |
~/.cache/solana
~/.local/share/solana/install
key: ${{ runner.os }}-${{ env.SOLANA_VERSION }}
- name: Install Solana
if: steps.solana-cache.outputs.cache-hit != 'true'
run: |
solana-install init ${{ env.SOLANA_VERSION }}
- name: Setup Solana Path
run: |
echo "$HOME/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
cargo-build-bpf --version
# Run build
- name: Build program
run: anchor build
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Yarn Cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- run: yarn install
- name: Generate IDL types
run: yarn idl:generate:nolint
- run: yarn build
- name: Run e2e tests
run: yarn test:e2e