-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
37 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 |
---|---|---|
|
@@ -43,43 +43,6 @@ jobs: | |
- name: build with maven | ||
run: mvn -B formatter:validate impsort:check javadoc:javadoc install --file pom.xml | ||
|
||
wildfly-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: [17] | ||
name: WildFly GraphQL feature pack tests | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
name: checkout | ||
|
||
- name: checkout WildFly feature pack repository | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: wildfly-extras/wildfly-graphql-feature-pack | ||
ref: main | ||
path: wildfly-graphql-feature-pack | ||
|
||
- uses: actions/[email protected] | ||
name: set up jdk ${{matrix.java}} | ||
with: | ||
java-version: ${{matrix.java}} | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
|
||
- name: build with maven | ||
run: mvn -B install -DskipTests --file pom.xml | ||
|
||
- name: Install xmllint | ||
run: sudo apt-get update && sudo apt-get install libxml2-utils | ||
|
||
- name: run WildFly feature pack tests | ||
run: | | ||
SMALLRYE_VERSION=$(xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' pom.xml) && \ | ||
echo "SMALLRYE_VERSION=$SMALLRYE_VERSION" && \ | ||
mvn install -Dversion.io.smallrye.graphql=$SMALLRYE_VERSION --file wildfly-graphql-feature-pack/pom.xml | ||
quarkus-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|