Build(deps): Bump quarkus.platform.version from 3.39.2 to 3.39.3 in /chapter4/knative-quarkus-function-ce #1007
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| defaults: | |
| run: | |
| shell: bash | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| build-java21: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| max-parallel: 4 | |
| matrix: | |
| app: | |
| - 'chapter2/quarkus-rest-services' | |
| - 'chapter3/quarkus-aws-lambda-http' | |
| - 'chapter3/quarkus-google-cloud-functions-cloud-events' | |
| - 'chapter3/quarkus-google-cloud-functions-http' | |
| - 'chapter4/knative-quarkus-function-ce' | |
| - 'chapter4/knative-quarkus-function-http' | |
| - 'chapter4/knative-springboot' | |
| - 'chapter4/quarkus-funqy-aws' | |
| - 'chapter4/quarkus-funqy-gcp-cloud-events' | |
| - 'chapter4/quarkus-funqy-gcp-http' | |
| - 'chapter4/quarkus-funqy-standalone' | |
| name: "Build ${{ matrix.app }}" | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup Java | |
| uses: actions/setup-java@v6 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| cache: maven | |
| - name: Maven Build for ${{ matrix.app }} | |
| working-directory: ${{ matrix.app }} | |
| run: | | |
| for attempt in 1 2 3; do | |
| ./mvnw -B clean verify -Dquarkus.http.host=0.0.0.0 -DskipITs=false && break | |
| echo "Attempt $attempt failed, retrying in 30s..." | |
| sleep 30 | |
| done | |
| build-java17: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| max-parallel: 2 | |
| matrix: | |
| app: | |
| - 'chapter3/quarkus-aws-requeststreamhandler' | |
| - 'chapter3/quarkus-azure-functions-http' | |
| - 'chapter4/quarkus-funqy-azure' | |
| name: "Build ${{ matrix.app }}" | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup Java | |
| uses: actions/setup-java@v6 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| cache: maven | |
| - name: Maven Build for ${{ matrix.app }} | |
| working-directory: ${{ matrix.app }} | |
| run: | | |
| for attempt in 1 2 3; do | |
| ./mvnw -B clean verify -Dquarkus.http.host=0.0.0.0 -DskipITs=false && break | |
| echo "Attempt $attempt failed, retrying in 30s..." | |
| sleep 30 | |
| done |