You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2021/10/01 22:00:23 UTC

[tinkerpop] branch 3.4-dev updated (b23a5a9 -> 4814ca0)

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


    from b23a5a9  fixed syntax error in smoke test for gh actions
     new afd6106  All CI is now handled in gh actions - remove travis CTR
     new 4814ca0  Move to temurin jdk as directed by setup-java docs.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/build-test.yml | 18 +++++------
 .travis.yml                      | 66 ----------------------------------------
 2 files changed, 9 insertions(+), 75 deletions(-)
 delete mode 100644 .travis.yml

[tinkerpop] 02/02: Move to temurin jdk as directed by setup-java docs.

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 4814ca0208100dc885911a699841cd95bd41d9b8
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Fri Oct 1 17:59:12 2021 -0400

    Move to temurin jdk as directed by setup-java docs.
    
    Hoping this maybe fixes gremlin-server failurs that don't make sense atm CTR
---
 .github/workflows/build-test.yml | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 3fb3398..d70cab7 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -11,7 +11,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          distribution: 'temurin'
       - name: Build with Maven
         run: mvn clean install -DskipTests -Dci --batch-mode -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
   java:
@@ -25,7 +25,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          distribution: 'temurin'
       - name: Build with Maven
         run: mvn clean install -pl -:gremlin-javascript -Dci --batch-mode -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
   gremlin-server:
@@ -39,7 +39,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          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
@@ -55,7 +55,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          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
@@ -71,7 +71,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          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
@@ -87,7 +87,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          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
@@ -103,7 +103,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          distribution: 'temurin'
       - name: Build with Maven
         run: |
           mvn clean install -pl -:gremlin-python,-gremlin-dotnet,-:gremlin-dotnet-source,-:gremlin-dotnet-tests -q -DskipTests -Dci
@@ -119,7 +119,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          distribution: 'temurin'
       - name: Set up Python 2.x
         uses: actions/setup-python@v2
         with:
@@ -148,7 +148,7 @@ jobs:
         uses: actions/setup-java@v2
         with:
           java-version: '8'
-          distribution: 'adopt'
+          distribution: 'temurin'
       - name: Set up .NET 3.1.x
         uses: actions/setup-dotnet@v1
         with:

[tinkerpop] 01/02: All CI is now handled in gh actions - remove travis CTR

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit afd61061575e46cc8904c783811dc4f876e1e18c
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Fri Oct 1 13:39:55 2021 -0400

    All CI is now handled in gh actions - remove travis CTR
---
 .travis.yml | 66 -------------------------------------------------------------
 1 file changed, 66 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 1e42d97..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,66 +0,0 @@
-language: java
-os:
-  - linux
-jdk:
-  - openjdk8
-sudo: required
-dist: xenial
-services:
-  - docker
-cache:
-  directories:
-    - $HOME/mvn-home
-addons:
-  apt:
-    sources:
-      - deadsnakes
-
-install:
-  # install maven 3.3.9 if it is not in cache already
-  - bash .travis.install-maven.sh "3.3.9" "${HOME}/mvn-home"
-  - export M2_HOME=${HOME}/mvn-home
-  - export PATH=${HOME}/mvn-home/bin:${PATH}
-  # visual check that we have the correct maven/python versions installed
-  - mvn -version
-  - python2 --version
-  - python3 --version
-
-before_install:
-  - wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
-  - sudo dpkg -i packages-microsoft-prod.deb
-  - sudo add-apt-repository universe
-  - sudo apt update
-  - sudo apt install apt-transport-https
-  - sudo apt update
-  - sudo apt install dotnet-sdk-3.1
-  - sudo apt install python3.6
-  - sudo rm /usr/bin/python3
-  - sudo ln -s python3.6 /usr/bin/python3
-
-jobs:
-  include:
-    - stage: "tests"
-      script: "mvn clean install -Dci --batch-mode -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
-      name: "mvn clean install"
-    - script: "touch gremlin-dotnet/src/.glv && touch gremlin-dotnet/test/.glv && mvn clean install -q -DskipTests -Dci && mvn verify -pl :gremlin-dotnet,:gremlin-dotnet-tests -P gremlin-dotnet"
-      name: ".net"
-    - script: "touch gremlin-python/.glv && mvn clean install -q -DskipTests -Dci && mvn verify -pl gremlin-python"
-      name: "python"
-    - script: "mvn clean install -q -DskipTests -Dci && mvn verify -pl :gremlin-javascript"
-      name: "javascript"
-    - script:
-      - "mvn clean install -q -DskipTests -Dci"
-      - "mvn verify -pl :gremlin-server -DskipTests -DskipIntegrationTests=false -DincludeNeo4j"
-      name: "gremlin server"
-    - script:
-        - "mvn clean install -q -DskipTests -Dci"
-        - "mvn verify -pl :gremlin-console -DskipTests -DskipIntegrationTests=false"
-      name: "gremlin console"
-    - script:
-      - "mvn clean install -q -DskipTests -Dci"
-      - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipTests -DskipIntegrationTests=false '-Dit.test=*IntegrateTest,!SparkGryoSerializerGraphComputerProcessIntegrateTest'"
-      name: "spark - core"
-    - script:
-      - "mvn clean install -q -DskipTests -Dci"
-      - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipTests -DskipIntegrationTests=false -Dit.test=SparkGryoSerializerGraphComputerProcessIntegrateTest"
-      name: "spark - gryo"