-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (64 loc) · 1.87 KB
/
dispatch.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
name: Performance Test - Dispatch
on:
workflow_dispatch:
inputs:
dataset:
type: choice
description: "Dataset to benchmark"
required: true
default: "inat2017"
options: ["all", "inat2017", "random", "grid", "cluster"]
count:
type: number
description: "Number of points to benchmark"
required: true
default: 100000
repeat:
type: number
description: "Number of times to repeat the benchmark"
required: true
default: 1
jobs:
performance-all:
strategy:
matrix:
dataset: ["inat2017", "random", "grid", "cluster"]
name: Performance Test - All - ${{ matrix.dataset }}
runs-on: ubuntu-latest
if: inputs.dataset == 'all'
steps:
- uses: actions/checkout@v3
- name: Setup environment
run: ./setup.sh
- name: Build
run: |
npm ci
npm run build
- name: Run benchmark
run: npm run start -- -t ${{ matrix.dataset }} -c ${{ inputs.count }} -r ${{ inputs.repeat }}
- name: Upload Result
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.dataset }}-result
path: results
retention-days: 1
performance-single:
name: Performance Test - ${{ inputs.dataset }}
runs-on: ubuntu-latest
if: inputs.dataset != null && inputs.dataset != 'all'
steps:
- uses: actions/checkout@v3
- name: Setup environment
run: ./setup.sh
- name: Build
run: |
npm ci
npm run build
- name: Run benchmark
run: npm run start -- -t ${{ inputs.dataset }} -c ${{ inputs.count }} -r ${{ inputs.repeat }}
- name: Upload Result
uses: actions/upload-artifact@v2
with:
name: ${{ inputs.dataset }}-result
path: results
retention-days: 1