forked from LMAX-Exchange/disruptor
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 901 Bytes
/
jcstress-manual.yml
File metadata and controls
33 lines (31 loc) · 901 Bytes
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
name: JCStress Testing - manual testing
on:
workflow_dispatch:
inputs :
mode :
description : 'JCStress run mode: sanity, quick, default, tough, stress'
required : true
default : 'default'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up java
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew jcstress -Pmode="${{ github.event.inputs.mode }}"
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: jcstress-report-manual
path: build/reports/jcstress