Add new location service and introduce into overall system #1107
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: Basic build and test | |
env: | |
MANDREL_VERSION: "23.0.1.2-Final" | |
on: | |
push: | |
paths-ignore: | |
- 'deploy/**' | |
- '**/*.md' | |
- 'docs/**' | |
- '**/images/**' | |
- '.github/dependabot.yml' | |
- '.github/quarkus-ecosystem-test' | |
- '.github/workflows/quarkus-snapshot.yaml' | |
- '.github/workflows/build-push-ui-images.yml' | |
- '.github/workflows/dependabot-automerge.yml' | |
- 'scripts/deploy-to-azure-containerapps.sh' | |
- 'scripts/watch-services.sh' | |
- '**/hyperfoil/**' | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
branches: | |
- main | |
paths-ignore: | |
- 'deploy/**' | |
- '**/*.md' | |
- 'docs/**' | |
- '**/images/**' | |
- '.github/dependabot.yml' | |
- '.github/build-push-container-images*.yml' | |
- '.github/quarkus-ecosystem-test' | |
- '.github/workflows/quarkus-snapshot.yaml' | |
- '.github/workflows/build-push-ui-images.yml' | |
- '.github/workflows/dependabot-automerge.yml' | |
- 'scripts/*.sh' | |
- '**/hyperfoil/**' | |
workflow_dispatch: | |
concurrency: | |
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
jvm-build-test: | |
runs-on: ubuntu-latest | |
if: github.repository == 'quarkusio/quarkus-super-heroes' | |
strategy: | |
fail-fast: false | |
matrix: | |
java: | |
- '17' | |
project: | |
- event-statistics | |
- rest-fights | |
- rest-heroes | |
- rest-villains | |
- rest-narration | |
- ui-super-heroes | |
name: "build-test-${{ matrix.project }}-${{ matrix.java }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
cache: maven | |
- name: "build-test-jvm-${{ matrix.project }}-java-${{ matrix.java }}" | |
working-directory: ${{ matrix.project }} | |
run: | | |
./mvnw -B clean verify \ | |
-Dquarkus.http.host=0.0.0.0 \ | |
-Dmaven.compiler.release=${{ matrix.java }} | |
native-build-test: | |
runs-on: ubuntu-latest | |
if: github.repository == 'quarkusio/quarkus-super-heroes' | |
strategy: | |
fail-fast: false | |
matrix: | |
java: | |
- '17' | |
project: | |
- event-statistics | |
- rest-fights | |
- rest-heroes | |
- rest-villains | |
# Until https://github.com/microsoft/semantic-kernel/issues/2885 is resolved | |
# - rest-narration | |
- ui-super-heroes | |
name: "native-build-test-${{ matrix.project }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache and restore Mandrel distro | |
id: check-mandrel-cache | |
uses: actions/cache@v3 | |
with: | |
path: mandrel-${{ env.MANDREL_VERSION }}-${{ matrix.java }}.tar.gz | |
key: mandrel-distro-${{ env.MANDREL_VERSION }}-${{ matrix.java }} | |
- name: Download Mandrel | |
if: steps.check-mandrel-cache.outputs.cache-hit != 'true' | |
run: | | |
download_url="https://github.com/graalvm/mandrel/releases/download/mandrel-${MANDREL_VERSION}/mandrel-java${{ matrix.java }}-linux-amd64-${MANDREL_VERSION}.tar.gz" | |
wget -q -O mandrel-${{ env.MANDREL_VERSION }}-${{ matrix.java }}.tar.gz $download_url | |
- name: Setup Maven+OpenJDK Distro | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'jdkfile' | |
jdkFile: mandrel-${{ env.MANDREL_VERSION }}-${{ matrix.java }}.tar.gz | |
java-version: ${{ matrix.java }} | |
architecture: x64 | |
cache: maven | |
- name: "build-test-native-${{ matrix.project }}-java-${{ matrix.java }}" | |
working-directory: ${{ matrix.project }} | |
run: | | |
./mvnw -B clean verify -Pnative \ | |
-Dquarkus.http.host=0.0.0.0 \ | |
-Dmaven.compiler.release=${{ matrix.java }} | |