You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2022/01/07 06:24:46 UTC

[orc] branch branch-1.7 updated: ORC-1080: Remove .travis.yml (#997)

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

dongjoon pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new b6cd9e2  ORC-1080: Remove .travis.yml (#997)
b6cd9e2 is described below

commit b6cd9e2c0654eae2997f1fb4d69869e56adaddbd
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Thu Jan 6 22:05:59 2022 -0800

    ORC-1080: Remove .travis.yml (#997)
    
    ### What changes were proposed in this pull request?
    
    This PR aims to remove Travis CI from Apache ORC CIs.
    
    ### Why are the changes needed?
    
    In these days, Travis CI takes 4 or more hours to run.
    ![](https://user-images.githubusercontent.com/9700541/148463375-beef2e9b-61c0-4fb1-bc8f-10b53b854b30.png)
    
    ORC-1079 already provides the same test coverage in GitHub Action. So, we can remove `Travis CI`. safely.
    
    ### How was this patch tested?
    
    Travis CI should not be invoked in this PR.
    
    (cherry picked from commit bfd8fdeef90f8752df97ac35d79a20f7aa3b327f)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .travis.yml | 31 -------------------------------
 1 file changed, 31 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 976034f..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-sudo: false
-dist: focal
-
-matrix:
-  fast_finish: true
-  include:
-  - language: java
-    env:
-    - MAVEN_OPTS=-Xmx2g MAVEN_SKIP_RC=true
-    script:
-    - cd java
-    - ./mvnw -Panalyze clean package
-    - ./mvnw apache-rat:check
-
-  - language: cpp
-    compiler: gcc
-    os: linux
-
-  - language: cpp
-    compiler: clang
-    os: linux
-
-cache:
-  directories:
-  - $HOME/.m2
-
-script:
-  - mkdir build
-  - cd build
-  - cmake -DBUILD_JAVA=OFF ..
-  - travis_wait 35 make package test-out