Update integration tests to use JUnit 5 #214
Workflow file for this run
This file contains 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
name: Test | |
on: | |
push: | |
branches: | |
- 14.0.x | |
pull_request: | |
branches: | |
- 14.0.x | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-2022] | |
include: | |
- os: ubuntu-latest | |
asset_name: linux-amd64 | |
gu_binary: gu | |
- os: macos-latest | |
asset_name: darwin-amd64 | |
gu_binary: gu | |
- os: windows-2022 | |
asset_name: windows-amd64 | |
gu_binary: gu.cmd | |
steps: | |
- uses: actions/checkout@v2 | |
- if: ${{ matrix.os == 'windows-2022' }} | |
name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- uses: graalvm/setup-graalvm@v1 | |
with: | |
version: '22.3.0' | |
java-version: '17' | |
components: 'native-image' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout PR Branch | |
uses: actions/checkout@v2 | |
- name: Checkout tools repo | |
uses: actions/checkout@v2 | |
with: | |
repository: infinispan/infinispan | |
path: infinispan | |
ref: 14.0.x | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build Infinispan SNAPSHOT | |
run: mvn install -s maven-settings.xml -am -pl cli -DskipTests | |
working-directory: infinispan | |
- if: ${{ matrix.os == 'windows-2022' }} | |
name: Build native executable | |
run: | | |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64 | |
mvn.cmd -V install -s maven-settings.xml -Pdistribution -Pnative -Pwindows -am -pl poms/bom,cli | |
shell: cmd | |
- if: ${{ matrix.os != 'windows-2022' }} | |
name: Build native executable | |
run: mvn -V install -s maven-settings.xml -Pdistribution -Pnative -am -pl poms/bom,cli | |