Skip to content

Quarkus 2.16.12.Final #228

Quarkus 2.16.12.Final

Quarkus 2.16.12.Final #228

Workflow file for this run

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/setup-msbuild@v1.0.2
- uses: graalvm/setup-graalvm@v1
with:
version: '22.3.3'
java-version: '17'
components: 'native-image'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout PR Branch
uses: actions/checkout@v4
- name: Checkout tools repo
uses: actions/checkout@v4
with:
repository: infinispan/infinispan
path: infinispan
ref: 14.0.x
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build Infinispan SNAPSHOT
run: ./mvnw 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
mvnw.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: ./mvnw -V install -s maven-settings.xml -Pdistribution -Pnative -am -pl poms/bom,cli