You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2020/04/02 04:10:44 UTC

[incubator-heron] branch nicknezis/bazel-2 updated: Trying out newer Ubuntu version

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

nicknezis pushed a commit to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/nicknezis/bazel-2 by this push:
     new f553b93  Trying out newer Ubuntu version
f553b93 is described below

commit f553b93d85dfc9cd06dc968921a2111de9000310
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Thu Apr 2 00:10:18 2020 -0400

    Trying out newer Ubuntu version
---
 .travis.yml | 31 +++++++++++++------------------
 1 file changed, 13 insertions(+), 18 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 3767679..3b49ccd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,30 @@
-group: edge
+---
 
-sudo: required
+group: edge
 
-dist: trusty
+dist: bionic
 
 language: java
 
+os: linux
+
 jdk:
   - oraclejdk11
 
 addons:
   apt:
-    sources:
-      - ubuntu-toolchain-r-test
-
     packages:
-      - gcc-4.8
-      - g++-4.8
-      - gcc-4.8-multilib
-      - g++-4.8-multilib
-      - python2.7
-      - libcppunit-dev
+      - libtool-bin
+      - python-dev
+      - python-wheel
       - wget
-      - pkg-config
       - zip
       - zlib1g-dev
       - google-perftools
       - libgoogle-perftools-dev
 
 env:
-  - BAZEL_VERSION=2.0.0 CC=gcc-4.8 CXX=g++-4.8 CPP=cpp-4.8 CXXCPP=cpp-4.8 ENABLE_HEAPCHECK=1
+  - BAZEL_VERSION=2.2.0 ENABLE_HEAPCHECK=1
 
 before_install:
   # download and install bazel
@@ -37,13 +32,13 @@ before_install:
   - chmod +x bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh
   - ./bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh --user
 
-before_script:
-  - which gcc-4.8
+script:
+  - which gcc
   - gcc --version
-  - which g++-4.8
+  - which g++
   - g++ --version
   - which python
   - python -V
   - which python2.7
   - python2.7 -V
-  - scripts/travis/ci.sh
+  - scripts/travis/ci.sh
\ No newline at end of file