-
Notifications
You must be signed in to change notification settings - Fork 9
61 lines (54 loc) · 1.53 KB
/
test.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
name: PR Test
on:
pull_request:
branches:
- master
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test ENState 🚀
runs-on: arc-runner-set
env:
SCCACHE_REDIS: "redis://redis.redis.svc.cluster.local:6379"
RUSTC_WRAPPER: "sccache"
strategy:
fail-fast: false
matrix:
suite: [server, worker]
include:
- suite: server
build: cargo build --release
env_file: .env
- suite: worker
build: bun install --global pnpm && pnpm install && pnpm build
env_file: .dev.vars
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
with:
version: "v0.7.4"
- run: bun install
working-directory: test
- name: Set-up environment (${{ matrix.env_file }})
shell: bash
env:
RPC_URL: ${{ secrets.RPC_URL }}
OPENSEA_API_KEY: ${{ secrets.OPENSEA_API_KEY }}
run: |
cat <<EOF > ${{ matrix.env_file }}
RPC_URL=$RPC_URL
OPENSEA_API_KEY=$OPENSEA_API_KEY
UNIVERSAL_RESOLVER=0x8cab227b1162f03b8338331adaad7aadc83b895e
EOF
working-directory: ${{ matrix.suite }}
- name: Build
run: ${{ matrix.build }}
working-directory: ${{ matrix.suite }}
- name: Test
run: bun test ${{ matrix.suite }} --timeout 10000 --rerun-each 2
working-directory: test