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 14:32:04 UTC

[tinkerpop] branch master updated (a283bbb -> f534e56)

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

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


    from a283bbb  Added all travis tests as github actions
     new 809a278  Fixed typo in gh action for .NET build CTR
     new f534e56  Install virtualenv directly for gh actions

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 | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

[tinkerpop] 01/02: Fixed typo in gh action for .NET build CTR

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

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

commit 809a278374a8468fb6d5212c4f22e9d85505e93a
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Fri Oct 1 10:25:21 2021 -0400

    Fixed typo in gh action for .NET build CTR
---
 .github/workflows/build-test.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 3a6bddc..22a3fb9 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -166,8 +166,8 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v2
-      - name: Set up .NET
-        uses: actions/setup-dotnet@v2
+      - name: Set up JDK11
+        uses: actions/setup-java@v2
         with:
           java-version: '11'
           distribution: 'adopt'

[tinkerpop] 02/02: Install virtualenv directly for gh actions

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

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

commit f534e5629bb7459b5c6506fab38f7e2b5b123ed8
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Fri Oct 1 10:31:01 2021 -0400

    Install virtualenv directly for gh actions
    
    Seemed to work automatically in travis for some reason, but failed to find the executable in gh actions CTR
---
 .github/workflows/build-test.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 22a3fb9..037835b 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -154,6 +154,10 @@ jobs:
         uses: actions/setup-python@v2
         with:
           python-version: '3.8'
+      - name: Setup virtualenv
+        run: |
+          python3 -m pip install --upgrade pip
+          pip3 install virtualenv
       - name: Build with Maven
         run: |
           touch gremlin-python/.glv