Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,33 @@ on:
type: string
default: '{}'

workflow_dispatch:
inputs:
jdk_version:
description: 'JDK version'
required: true
type: choice
options:
- '21'
- '17'
- '11'
default: '21'
pull_request_repo:
description: 'Repository to check out'
required: false
Comment thread
marcosgopen marked this conversation as resolved.
type: string
default: 'jbosstm/performance'
pull_request_ref:
description: 'Branch or commit to test'
required: false
type: string
default: 'main'
environment_variables:
description: 'Environment variables (JSON format: {"COMPARE_STORES":"y","THREAD_COUNTS":"10"})'
required: false
type: string
default: '{"COMPARE_STORES":"y"}'

# Only run the latest job
concurrency:
group: 'performance @ ${{ github.workflow }} @ ${{ github.head_ref || github.ref }} @ jdk${{ inputs.jdk_version }}'
Expand Down
Loading