only filesystem native #22
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: Early Access | ||
on: | ||
push: | ||
branches: [ main ] | ||
env: | ||
JAVA_VERSION: '21' | ||
JAVA_DISTRO: 'temurin' | ||
jobs: | ||
precheck: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
VERSION: ${{ steps.vars.outputs.VERSION }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Cancel previous run | ||
uses: styfle/cancel-workflow-action@0.12.1 | ||
with: | ||
access_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: ${{ env.JAVA_DISTRO }} | ||
cache: maven | ||
- name: Version | ||
id: vars | ||
shell: bash | ||
run: | | ||
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) | ||
echo "VERSION=$(echo $VERSION)" >> $GITHUB_OUTPUT | ||
build_jar: | ||
needs: [ precheck ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: ${{ env.JAVA_DISTRO }} | ||
cache: maven | ||
- name: Build | ||
run: ./mvnw -ntp -B -Pearlyaccess verify | ||
build_native_images: | ||
name: 'Build Native Image ${{ matrix.platform }}' | ||
strategy: | ||
matrix: | ||
os: [ macos-latest, windows-latest, ubuntu-latest ] | ||
include: | ||
- os: 'ubuntu-latest' | ||
platform: 'linux-amd64' | ||
- os: 'macos-latest' | ||
platform: 'darwin-arm64' | ||
- os: 'macos-13' | ||
platform: 'darwin-amd64' | ||
- os: 'windows-latest' | ||
platform: 'win-amd64' | ||
runs-on: ${{matrix.os}} | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
distribution: mandrel | ||
cache: maven | ||
- name: Build | ||
run: | | ||
cd quarkus-mcp-servers/filesystem | ||
./mvnw -ntp -B -Pearlyaccess -Dnative -DskipTests package | ||
release: | ||
needs: [ build_native_images ] | ||
if: endsWith(${{ needs.precheck.outputs.VERSION }}, '-SNAPSHOT') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: ${{ env.JAVA_DISTRO }} | ||
cache: maven | ||
- name: Release | ||
uses: jreleaser/release-action@v2 | ||
with: | ||
arguments: full-release | ||
env: | ||
JRELEASER_PROJECT_VERSION: ${{ needs.precheck.outputs.VERSION }} | ||
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: JReleaser output | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: jreleaser-release | ||
path: | | ||
out/jreleaser/trace.log | ||
out/jreleaser/output.properties |