-
Notifications
You must be signed in to change notification settings - Fork 0
164 lines (159 loc) · 5.8 KB
/
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
name: Benchmarking
on:
workflow_dispatch:
inputs:
never_rounds:
required: false
description: Never Rounds (1k)
default: '25'
type: string
once_rounds:
required: false
description: Once Rounds (1k)
default: '0.5'
type: string
java_distribution:
required: false
description: Java Distribution
type: string
default: 'temurin'
benchmark_filter:
required: false
description: Test Filter
type: string
exeLog:
description: Execution Log
required: true
default: 'none'
type: choice
options:
- none
- console
- debug
workflow_call:
run-name: "Benchmarking: ${{ github.event.inputs.never_rounds }}k rounds, distro ${{ github.event.inputs.java_distribution }}, exeLog: ${{ github.event.inputs.exeLog }}"
jobs:
benchmarks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 1
matrix:
luceeVersion: [ 6.2/snapshot/zero, 6.2.0.166/rc/zero, 6.1/snapshot/zero, 5.4/snapshot/light ] # 6.0/snapshot/light
javaVersion: [ 11, 21, 23 ] # 24-ea
exclude:
- luceeVersion: 5.4/snapshot/light
javaVersion: 21
- luceeVersion: 5.4/snapshot/light
javaVersion: 23
- luceeVersion: 5.4/snapshot/light
javaVersion: 24-ea
- luceeVersion: 6.0/snapshot/zero
javaVersion: 21
- luceeVersion: 6.0/snapshot/zero
javaVersion: 23
- luceeVersion: 6.0/snapshot/zero
javaVersion: 24-ea
- luceeVersion: 6.1/snapshot/zero
javaVersion: 23
- luceeVersion: 6.1/snapshot/zero
javaVersion: 24-ea
- luceeVersion: 6.2.0.166/rc/zero
javaVersion: 11
- luceeVersion: 6.2.0.166/rc/zero
javaVersion: 23
- luceeVersion: 6.2.0.166/rc/zero
javaVersion: 24-ea
env:
luceeVersionQuery: ${{ matrix.luceeVersion }}
compile: ${{ github.event.inputs.compile }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{matrix.javaVersion}}
uses: actions/setup-java@v4
with:
java-version: ${{matrix.javaVersion}}
distribution: ${{ github.event.inputs.java_distribution }}
- name: Cache Maven packages
if: always()
uses: actions/cache@v4
with:
path: ~/.m2
key: maven-cache
- name: Cache Lucee files
uses: actions/cache@v4
if: always()
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads
- name: Set up MySQL (local)
run: |
sudo systemctl start mysql
mysql -e 'CREATE DATABASE lucee' -uroot -proot
mysql -e 'CREATE USER "lucee"@"localhost" IDENTIFIED WITH mysql_native_password BY "lucee";' -uroot -proot
mysql -e 'GRANT ALL PRIVILEGES ON lucee.* TO "lucee"@"localhost"' -uroot -proot
mysql -e 'CREATE DATABASE lucee_fallback' -uroot -proot
mysql -e 'CREATE USER "lucee_fallback"@"localhost" IDENTIFIED WITH mysql_native_password BY "lucee_fallback";' -uroot -proot
mysql -e 'GRANT ALL PRIVILEGES ON lucee_fallback.* TO "lucee_fallback"@"localhost"' -uroot -proot
- name: Run Microbenches
uses: lucee/script-runner@main
with:
webroot: ${{ github.workspace }}/custom/benchmark
execute: /index.cfm
extensions: 7E673D15-D87C-41A6-8B5F1956528C605F #mysql
luceeVersionQuery: ${{ matrix.luceeVersion }}
env:
BENCHMARK_CYCLES: ${{ github.event.inputs.never_rounds }}
BENCHMARK_ONCE_CYCLES: ${{ github.event.inputs.once_rounds }}
BENCHMARK_FILTER: ${{ github.event.inputs.benchmark_filter }}
EXELOG: ${{ github.event.inputs.exeLog }}
LUCEE_DEBUGGING_MAXPAGEPARTS: 0
- uses: actions/upload-artifact@v4
if: always()
with:
name: results-${{ strategy.job-index }}
path: ${{ github.workspace }}/custom/benchmark/artifacts
report:
runs-on: ubuntu-latest
if: always()
needs: [ benchmarks ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21 / Temurin
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Cache Maven packages
if: always()
uses: actions/cache@v4
with:
path: ~/.m2
key: maven-cache
- name: Cache Lucee files
uses: actions/cache@v4
if: always()
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads
- uses: actions/download-artifact@v4
with:
path: ${{ github.workspace }}/custom/benchmark/artifacts
merge-multiple: true
- name: Display structure of downloaded files
run: ls -R ${{ github.workspace }}/custom/benchmark/artifacts
- name: Generate Report
uses: lucee/script-runner@main
with:
webroot: ${{ github.workspace }}/custom/benchmark
execute: /report.cfm
luceeVersionQuery: 6/stable/zero
extensions: D46B46A9-A0E3-44E1-D972A04AC3A8DC10 #cfchart
env:
BENCHMARK_FILTER: ${{ github.event.inputs.benchmark_filter }}
EXELOG: ${{ github.event.inputs.exeLog }}
JAVA_DISTRIBUTION: ${{ github.event.inputs.java_distribution }}
BENCHMARK_CYCLES: ${{ github.event.inputs.never_rounds }}
BENCHMARK_ONCE_CYCLES: ${{ github.event.inputs.once_rounds }}