This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch ci-fix in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 94b10119ba553a5ea20708e0895b3da9dbed5365 Author: Stephen Mallette <[email protected]> AuthorDate: Wed Oct 27 07:27:46 2021 -0400 Add a neo4j build to CI CTR --- .github/workflows/build-test.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 5f34973..4a6286f 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -158,4 +158,20 @@ jobs: touch gremlin-dotnet/src/.glv touch gremlin-dotnet/test/.glv mvn clean install -pl -:gremlin-javascript,-:gremlin-python -q -DskipTests -Dci - mvn verify -pl :gremlin-dotnet,:gremlin-dotnet-tests -P gremlin-dotnet \ No newline at end of file + mvn verify -pl :gremlin-dotnet,:gremlin-dotnet-tests -P gremlin-dotnet + neo4j-gremlin: + name: neo4j-gremlin + timeout-minutes: 1200 # 20 minutes + needs: smoke + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'temurin' + - name: Build with Maven + run: | + mvn clean install -pl -:gremlin-javascript,-:gremlin-python,-gremlin-dotnet,-:gremlin-dotnet-source,-:gremlin-dotnet-tests -q -DskipTests -Dci + mvn verify -pl :neo4j-gremlin -DincludeNeo4j \ No newline at end of file
