This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
Bump io.quarkus:quarkus-universe-bom from 3.3.1 to 3.3.2 #995
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: "Pull Request CI" | |
on: | |
- pull_request | |
jobs: | |
build-main: | |
name: JVM build - Quarkus main | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Install JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Build Quarkus main | |
run: git clone https://github.com/quarkusio/quarkus.git && cd quarkus && ./mvnw -B -s .github/mvn-settings.xml clean install -Dquickly -Prelocations | |
- name: Build with Maven | |
run: mvn -fae -V -B clean test -s .github/mvn-settings.xml -Dquarkus-core-only -Dinclude.serverless -Dinclude.datagrid | |
- name: Zip Artifacts | |
run: | | |
zip -R artifacts-jvm${{ matrix.java }}.zip 'surefire-reports/*' | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: ci-artifacts | |
path: artifacts-jvm${{ matrix.java }}.zip | |
build-main-native: | |
name: Native build - Quarkus main | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Install JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Build Quarkus main | |
run: git clone https://github.com/quarkusio/quarkus.git && cd quarkus && ./mvnw -B -s .github/mvn-settings.xml clean install -Dquickly -Prelocations | |
- name: Build with Maven | |
run: mvn -fae -V -B clean verify -s .github/mvn-settings.xml -Dquarkus-core-only -DskipTests -DskipITs -pl 'app-metadata/deployment,app-metadata/runtime,common,http/http-minimum,http/http-advanced' -Dquarkus.profile=native -Dquarkus.native.container-runtime=docker |