-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (86 loc) · 2.74 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
name: Simple benchmarking
on:
workflow_dispatch:
workflow_call:
jobs:
benchmarks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
#max-parallel: 1
matrix:
luceeVersion: [ 5.4/snapshot/light, 6.0/snapshot/light, 6.1/snapshot/light, 6.1.0/snapshot/light, 6.2/snapshot/light ]
javaVersion: [ 11, 21 ]
exclude:
- luceeVersion: 5.4/snapshot/jar
javaVersion: 21
- luceeVersion: 6.0/snapshot/jar
javaVersion: 21
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: "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
- name: Run Microbenches
uses: lucee/script-runner@main
with:
webroot: ${{ github.workspace }}/custom/benchmark
execute: /index.cfm
luceeVersionQuery: ${{ matrix.luceeVersion }}
- uses: actions/upload-artifact@v4
with:
name: results-${{ strategy.job-index }}
path: ${{ github.workspace }}/custom/benchmark/artifacts
report:
runs-on: ubuntu-latest
needs: [ benchmarks ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
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: 5.4/stable/jar