forked from smallrye/smallrye-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from smallrye/main
[pull] main from smallrye:main
- Loading branch information
Showing
116 changed files
with
1,483 additions
and
337 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: SmallRye GraphQL | ||
release: | ||
current-version: 2.8.1 | ||
next-version: 2.8.2-SNAPSHOT | ||
current-version: 2.9.1 | ||
next-version: 2.9.2-SNAPSHOT |
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -96,8 +96,8 @@ jobs: | |
- name: checkout Quarkus repository | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: quarkusio/quarkus | ||
ref: main | ||
repository: mskacelik/quarkus | ||
ref: srgql-2.9.1 | ||
path: quarkus | ||
|
||
- uses: actions/[email protected] | ||
|
@@ -120,7 +120,7 @@ jobs: | |
cd quarkus && \ | ||
mvn install -Dsmallrye-graphql.version=$SMALLRYE_VERSION -Dquickly && \ | ||
mvn verify -Dsmallrye-graphql.version=$SMALLRYE_VERSION -Dnative \ | ||
-pl extensions/smallrye-graphql-client/deployment,extensions/smallrye-graphql-client/runtime,extensions/smallrye-graphql/deployment,extensions/smallrye-graphql/runtime,integration-tests/smallrye-graphql,integration-tests/smallrye-graphql-client,integration-tests/hibernate-orm-graphql-panache,extensions/oidc-client-graphql/deployment,extensions/oidc-client-graphql/runtime | ||
-pl extensions/smallrye-graphql-client/deployment,extensions/smallrye-graphql-client/runtime,extensions/smallrye-graphql/deployment,extensions/smallrye-graphql/runtime,integration-tests/smallrye-graphql,integration-tests/smallrye-graphql-client,integration-tests/hibernate-orm-graphql-panache,extensions/oidc-client-graphql/deployment,extensions/oidc-client-graphql/runtime,tcks/microprofile-graphql -Ptcks | ||
quality: | ||
needs: [build] | ||
|
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 |
---|---|---|
|
@@ -29,16 +29,22 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
java-version: 11 | ||
server-id: 'oss.sonatype' | ||
server-username: 'MAVEN_DEPLOY_USERNAME' | ||
server-password: 'MAVEN_DEPLOY_TOKEN' | ||
gpg-private-key: ${{secrets.MAVEN_GPG_PRIVATE_KEY}} | ||
gpg-passphrase: 'MAVEN_GPG_PASSPHRASE' | ||
|
||
- name: Install graphviz | ||
run: sudo apt install graphviz | ||
|
||
- name: maven release ${{steps.metadata.outputs.current-version}} | ||
env: | ||
MAVEN_DEPLOY_USERNAME: ${{secrets.MAVEN_DEPLOY_USERNAME}} | ||
MAVEN_DEPLOY_TOKEN: ${{secrets.MAVEN_DEPLOY_TOKEN}} | ||
MAVEN_GPG_PASSPHRASE: ${{secrets.MAVEN_GPG_PASSPHRASE}} | ||
run: | | ||
java -version | ||
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output smallrye-sign.asc .github/release/smallrye-sign.asc.gpg | ||
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output maven-settings.xml .github/release/maven-settings.xml.gpg | ||
gpg --fast-import --no-tty --batch --yes smallrye-sign.asc | ||
git config --global user.name "SmallRye CI" | ||
git config --global user.email "[email protected]" | ||
git checkout -b release | ||
|
@@ -47,10 +53,10 @@ jobs: | |
git add tools/gradle-plugin/gradle.properties | ||
git commit -m "Update Gradle plugin version" | ||
# make sure the server/integration-tests-jdk16 gets its version updated too: include the jdk16plus profile | ||
mvn -X -e -B release:prepare -Prelease -Pjdk16plus -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} -s maven-settings.xml | ||
mvn -X -e -B release:prepare -Prelease -Pjdk16plus -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} | ||
git checkout ${{github.base_ref}} | ||
git rebase release | ||
mvn -X -e -B release:perform -Prelease -Pjdk16plus -s maven-settings.xml | ||
mvn -X -e -B release:perform -Prelease -Pjdk16plus | ||
git push | ||
git push --tags | ||
|
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
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
Oops, something went wrong.