Fix and test quarkus image #291
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: PR build Quarkus images for smoke tests | ||
| on: | ||
| pull_request: | ||
| paths: | ||
| - "smoke-tests/images/quarkus/**" | ||
| - ".github/workflows/pr-smoke-test-quarkus-images.yml" | ||
| - ".github/workflows/reusable-smoke-test-images.yml" | ||
| branches: | ||
| - main | ||
| jobs: | ||
| build: | ||
| steps: | ||
|
Check failure on line 14 in .github/workflows/pr-smoke-test-quarkus-images.yml
|
||
| - name: Set tag | ||
| run: echo "TAG=$(date '+%Y%m%d').$GITHUB_RUN_ID" >> $GITHUB_ENV | ||
| - uses: ./.github/workflows/reusable-smoke-test-images.yml | ||
| with: | ||
| project: ":smoke-tests:images:quarkus" | ||
| tag: ${{ env.TAG }} | ||
| cache-read-only: true | ||
| # Quarkus 3.7+ requires Java 17+ | ||
| skip-java-8: true | ||
| skip-java-11: true | ||
| - name: Verify | ||
| run: ./gradlew :smoke-tests:test -PsmokeTestSuite=other | ||