Skip to content

[CMTOOL-382] migrate secret-key-credential-store paths #59

[CMTOOL-382] migrate secret-key-credential-store paths

[CMTOOL-382] migrate secret-key-credential-store paths #59

Workflow file for this run

name: WildFly Server Migration CI
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
# Only run the latest job
concurrency:
group: '${{ github.workflow }} @ ${{ github.ref || github.run_id }}'
cancel-in-progress: true
jobs:
Test-build-default-matrix:
name: BUILD DEFAULT - JDK${{ matrix.jdk }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
jdk: [17, 21]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
path: wildfly-server-migration
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
cache: 'maven'
- name: Build Server Migration Tool
run: |
cd wildfly-server-migration
mvn -U -B -fae clean install
- uses: actions/upload-artifact@v4
if: failure()
with:
name: surefire-reports-JDK${{ matrix.jdk }}-${{ matrix.os }}
path: 'wildfly-server-migration/**/surefire-reports/*.txt'