-
Notifications
You must be signed in to change notification settings - Fork 111
40 lines (37 loc) · 1.08 KB
/
tokenvm-load-tests.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
# Copyright (C) 2023, Ava Labs, Inc. All rights reserved.
# See the file LICENSE for licensing terms.
name: TokenVM Load Tests
on:
push:
branches:
- main
pull_request:
types: [labeled,synchronize,reopened]
jobs:
tokenvm-load-tests:
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
strategy:
matrix:
level: [v1, v2, v3] # v4 is not supported
runs-on:
labels: ubuntu-20.04-32
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: |
go.sum
examples/tokenvm/go.sum
- name: Run load tests
working-directory: ./examples/tokenvm
shell: bash
run: GOAMD64=${{ matrix.level }} scripts/tests.load.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true