-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quarkiverse adjustments / onboarding (#409)
- Loading branch information
1 parent
96810f8
commit 58ba20d
Showing
119 changed files
with
328 additions
and
475 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
# update the versions | ||
mvn --settings .github/quarkus-ecosystem-maven-settings.xml -B versions:set-property -Dproperty=quarkus.version -DnewVersion=${QUARKUS_VERSION} -DgenerateBackupPoms=false | ||
mvn --settings .github/quarkus-ecosystem-maven-settings.xml -B versions:set-property -Dproperty=version.io.quarkus -DnewVersion=${QUARKUS_VERSION} -DgenerateBackupPoms=false | ||
|
||
# run the tests | ||
mvn --settings .github/quarkus-ecosystem-maven-settings.xml -B clean install -Pquick -pl '!integration-test' | ||
|
||
mvn --settings .github/quarkus-ecosystem-maven-settings.xml clean verify -Pjackson-classic -pl integration-test -Dnative -Dquarkus.native.container-build=true --fail-at-end -e | ||
mvn --settings .github/quarkus-ecosystem-maven-settings.xml clean verify -Pjsonb-classic -pl integration-test -Dnative -Dquarkus.native.container-build=true --fail-at-end -e | ||
mvn --settings .github/quarkus-ecosystem-maven-settings.xml clean verify -Pjackson-reactive -pl integration-test -Dnative -Dquarkus.native.container-build=true --fail-at-end -e | ||
mvn --settings .github/quarkus-ecosystem-maven-settings.xml clean verify -Pjsonb-reactive -pl integration-test -Dnative -Dquarkus.native.container-build=true --fail-at-end -e |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: "Quarkus ecosystem CI" | ||
on: | ||
watch: | ||
types: [started] | ||
workflow_dispatch: | ||
|
||
# For this CI to work, ECOSYSTEM_CI_TOKEN needs to contain a GitHub with rights to close the Quarkus issue that the user/bot has opened, | ||
# while 'ECOSYSTEM_CI_REPO_PATH' needs to be set to the corresponding path in the 'quarkusio/quarkus-ecosystem-ci' repository | ||
|
||
env: | ||
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci | ||
ECOSYSTEM_CI_REPO_FILE: context.yaml | ||
JAVA_VERSION: 17 | ||
|
||
######################### | ||
# Repo specific setting # | ||
######################### | ||
|
||
ECOSYSTEM_CI_REPO_PATH: quarkiverse-resteasy-problem | ||
|
||
jobs: | ||
build: | ||
name: "Build against latest Quarkus snapshot" | ||
runs-on: ubuntu-latest | ||
if: github.actor == 'quarkusbot' || github.event_name == 'workflow_dispatch' | ||
|
||
steps: | ||
- name: Install yq | ||
uses: dcarbone/[email protected] | ||
|
||
- name: Set up Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: 'temurin' | ||
|
||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
path: current-repo | ||
|
||
- name: Checkout Ecosystem | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ${{ env.ECOSYSTEM_CI_REPO }} | ||
path: ecosystem-ci | ||
|
||
- name: Setup and Run Tests | ||
run: ./ecosystem-ci/setup-and-test | ||
env: | ||
ECOSYSTEM_CI_TOKEN: ${{ secrets.ECOSYSTEM_CI_TOKEN }} |
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
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
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
...problem/deployment/ClasspathDetector.java → ...problem/deployment/ClasspathDetector.java
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
2 changes: 1 addition & 1 deletion
2
...deployment/ExceptionMapperDefinition.java → ...deployment/ExceptionMapperDefinition.java
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
2 changes: 1 addition & 1 deletion
2
...y/problem/deployment/JacksonDetector.java → ...y/problem/deployment/JacksonDetector.java
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
2 changes: 1 addition & 1 deletion
2
...asy/problem/deployment/JsonBDetector.java → ...asy/problem/deployment/JsonBDetector.java
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
2 changes: 1 addition & 1 deletion
2
...roblem/deployment/ProblemBuildConfig.java → ...roblem/deployment/ProblemBuildConfig.java
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
Oops, something went wrong.