Skip to content

RTS

RTS #1

Workflow file for this run

name: RTS
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
narayanaRepo:
description: 'Repo to clone for Narayana'
required: true
default: 'marcosgopen/narayana'
type: 'string'
narayanaBranch:
description: 'Branch to use from narayana'
required: true
default: 'main'
type: 'string'
jobs:
RTS-test:
name: RTS test with JDK ${{ matrix.java-version }}
timeout-minutes: 120
strategy:
matrix:
java-version: [ 11, 17, 21 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: ${{ inputs.narayanaRepo }}
ref: ${{ inputs.narayanaBranch }}
- uses: actions/setup-java@v1
name: Set up JDK ${{ matrix.java-version }}
with:
java-version: ${{ matrix.java-version }}
- name: RTS test
run: |
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
WORKSPACE=$PWD PROFILE=RTS ./scripts/hudson/narayana.sh
env:
LRA_TCK_TIMEOUT_FACTOR: 1
- uses: actions/upload-artifact@v3
if: always()
with:
name: RTS-logs-jdk${{ matrix.java-version }}
path: |
jboss-as/dist/target/wildfly-*/standalone/log/
**/ObjectStore*/**
**/tx-object-store/**
**/*tx-object-store.zip
**/target/*surefire-reports*/**
**/target/*failsafe-reports*/**
if-no-files-found: error