Bump org.jboss:jboss-parent from 38 to 50.0.0.redhat-00001 #354
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will build a Java project with Maven | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
| name: EAP datasources and drivers Galleon feature-pack - CI | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| build: | |
| name: ${{ matrix.os }}-jdk${{ matrix.java }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest ] | |
| java: ['17'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| - name: Build and Test on ${{ matrix.java }} | |
| run: mvn clean install | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: surefire-reports-${{ matrix.os }}-${{ matrix.java }} | |
| path: '**/surefire-reports/*.txt' | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: logs-${{ matrix.os }}-${{ matrix.java }} | |
| path: '**/tests/**/logs/**' |