-
-
Notifications
You must be signed in to change notification settings - Fork 16
117 lines (110 loc) · 4.37 KB
/
scheduled-benchmark.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
name: JupyterLab Weekly Benchmark Tests
on:
schedule:
# Every Sunday at 01:12am
- cron: "12 1 * * 0"
permissions:
issues: write
jobs:
# One job per file to deal with the 6hours limit
# jobs.<job-id>.strategy is not allowed for reusable workflow; hence the job duplication
test-codeNotebook:
uses: jupyterlab/benchmarks/.github/workflows/run-benchmark.yml@master
with:
# Notebooks to test
tests: '["codeNotebook"]'
artifacts_name: 'benchmark-codeNotebook-report'
event: ${{ github.event_name }}
# Repository to clone for scheduled benchmark
challenger: 'jupyterlab/jupyterlab'
# Branch to checkout for scheduled benchmark
challenger_branch: 'master'
reference_branch: 'master'
# Which browser to use (one of 'chromium', 'firefox', 'webkit')
browser: 'chromium'
# How many samples to compute the statistical distribution
samples: '100'
# Test steps to measure on each test notebook
test_steps: '["open", "search", "switch-with-copy", "switch-with-txt", "close"]'
# The test notebook size
size: '100'
test-mdNotebook:
uses: jupyterlab/benchmarks/.github/workflows/run-benchmark.yml@master
with:
# Notebooks to test
tests: '["mdNotebook"]'
artifacts_name: 'benchmark-mdNotebook-report'
event: ${{ github.event_name }}
# Repository to clone for scheduled benchmark
challenger: 'jupyterlab/jupyterlab'
# Branch to checkout for scheduled benchmark
challenger_branch: 'master'
reference_branch: 'master'
# Which browser to use (one of 'chromium', 'firefox', 'webkit')
browser: 'chromium'
# How many samples to compute the statistical distribution
samples: '100'
# Test steps to measure on each test notebook
test_steps: '["open", "search", "switch-with-copy", "switch-with-txt", "close"]'
# The test notebook size
size: '100'
test-longOutput:
uses: jupyterlab/benchmarks/.github/workflows/run-benchmark.yml@master
with:
# Notebooks to test
tests: '["longOutput"]'
artifacts_name: 'benchmark-longOutput-report'
event: ${{ github.event_name }}
# Repository to clone for scheduled benchmark
challenger: 'jupyterlab/jupyterlab'
# Branch to checkout for scheduled benchmark
challenger_branch: 'master'
reference_branch: 'master'
# Which browser to use (one of 'chromium', 'firefox', 'webkit')
browser: 'chromium'
# How many samples to compute the statistical distribution
samples: '100'
# Test steps to measure on each test notebook
test_steps: '["open", "search", "switch-with-copy", "switch-with-txt", "close"]'
# The test notebook size
size: '100'
test-largeMetadata:
uses: jupyterlab/benchmarks/.github/workflows/run-benchmark.yml@master
with:
# Notebooks to test
tests: '["largeMetadata"]'
artifacts_name: 'benchmark-largeMetadata-report'
event: ${{ github.event_name }}
# Repository to clone for scheduled benchmark
challenger: 'jupyterlab/jupyterlab'
# Branch to checkout for scheduled benchmark
challenger_branch: 'master'
reference_branch: 'master'
# Which browser to use (one of 'chromium', 'firefox', 'webkit')
browser: 'chromium'
# How many samples to compute the statistical distribution
samples: '100'
# Test steps to measure on each test notebook
test_steps: '["open", "search", "switch-with-copy", "switch-with-txt", "close"]'
# The test notebook size
size: '100'
test-errorOutputs:
uses: jupyterlab/benchmarks/.github/workflows/run-benchmark.yml@master
with:
# Notebooks to test
tests: '["errorOutputs"]'
artifacts_name: 'benchmark-errorOutputs-report'
event: ${{ github.event_name }}
# Repository to clone for scheduled benchmark
challenger: 'jupyterlab/jupyterlab'
# Branch to checkout for scheduled benchmark
challenger_branch: 'master'
reference_branch: 'master'
# Which browser to use (one of 'chromium', 'firefox', 'webkit')
browser: 'chromium'
# How many samples to compute the statistical distribution
samples: '100'
# Test steps to measure on each test notebook
test_steps: '["open", "search", "switch-with-copy", "switch-with-txt", "close"]'
# The test notebook size
size: '100'