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 2020/01/17 19:23:37 UTC

[tinkerpop] branch travis-fix updated (b279997 -> dd447f9)

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

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


 discard b279997  Try to manually install the right version of python in a java language xenial for travis CTR
     new dd447f9  Try to manually install the right version of python in a java language xenial for travis CTR

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b279997)
            \
             N -- N -- N   refs/heads/travis-fix (dd447f9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 .travis.yml | 2 ++
 1 file changed, 2 insertions(+)


[tinkerpop] 01/01: Try to manually install the right version of python in a java language xenial for 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 travis-fix
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit dd447f9242ef0a043440b8da23c9b77dc75384e3
Author: stephen <sp...@gmail.com>
AuthorDate: Fri Jan 17 12:46:49 2020 -0500

    Try to manually install the right version of python in a java language xenial for travis CTR
---
 .travis.yml | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 8abe593..ff66f97 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,9 +3,6 @@ os:
   - linux
 jdk:
   - openjdk8
-env:
-  global:
-    - PATH=/opt/python/3.7.1/bin:$PATH
 sudo: required
 dist: xenial
 services:
@@ -13,6 +10,10 @@ services:
 cache:
   directories:
     - $HOME/mvn-home
+addons:
+  apt:
+    sources:
+      - deadsnakes
 
 install:
   # install maven 3.3.9 if it is not in cache already
@@ -32,6 +33,9 @@ before_install:
   - sudo apt install apt-transport-https
   - sudo apt update
   - sudo apt install dotnet-sdk-2.2
+  - sudo apt install python3.6
+  - sudo rm /usr/bin/python3
+  - sudo ln -s python3.6 /usr/bin/python3
 
 jobs:
   include: