ISPN-16817 Network configuration guide #1
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: Native CLI | |
on: | |
push: | |
branches: | |
- feature/* | |
- main | |
- 15.*.x | |
pull_request: | |
branches: | |
- feature/* | |
- main | |
- 15.*.x | |
concurrency: | |
# Cancel jobs same head_branch same repo, works | |
# both for pull_request and push | |
group: > | |
${{ github.workflow }}-${{ github.event.repository.full_name }}- | |
${{ github.event.pull_request.head.ref || github.event.push.ref }} | |
cancel-in-progress: true | |
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@v4 | |
- if: ${{ matrix.os == 'windows-2022' }} | |
name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '21' | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- 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 -Pdistribution -Pnative -Pwindows -am -pl quarkus/cli -Dquarkus.native.native-image-xmx=5G | |
shell: cmd | |
- if: ${{ matrix.os != 'windows-2022' }} | |
name: Build native executable | |
run: ./mvnw -V install -Pdistribution -Pnative -am -pl quarkus/cli |