You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by ga...@apache.org on 2021/03/01 10:08:21 UTC

[parquet-mr] branch master updated: PARQUET-1980: Re-introduce TravisCI for testing on ARM64 (#876)

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

gabor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new 154d8f1  PARQUET-1980: Re-introduce TravisCI for testing on ARM64 (#876)
154d8f1 is described below

commit 154d8f16842727a8d888b50ea05f36686153f43b
Author: Martin Grigorov <ma...@users.noreply.github.com>
AuthorDate: Mon Mar 1 12:08:09 2021 +0200

    PARQUET-1980: Re-introduce TravisCI for testing on ARM64 (#876)
---
 .travis.yml | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..e7ad77d
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,46 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# TravisCI is being used as an alternative to GitHub Actions until
+# the latter provides support for ARM64 CPU architecture (PARQUET-1980)
+
+distro: bionic
+arch: arm64
+language: java
+jdk: openjdk11
+env: 
+  - HADOOP_PROFILE=default TEST_CODECS=uncompressed
+  - HADOOP_PROFILE=default TEST_CODECS=gzip
+  - HADOOP_PROFILE=default TEST_CODECS=snappy
+
+cache:
+  directories:
+  - $HOME/.m2
+
+before_install:
+  - lscpu
+  - bash dev/ci-before_install.sh
+  - export JAVA_HOME="/usr/lib/jvm/adoptopenjdk-11-hotspot-arm64"    # for maven-javadoc-plugin
+    
+install: 
+  - sudo apt-get update -qq
+  - sudo apt-get install -qq maven
+  - java -version
+  - mvn -version
+  - mvn install --batch-mode -DskipTests=true -Dmaven.javadoc.skip=true -Dsource.skip=true | pv -fbi 60 > mvn_install.log || (cat mvn_install.log && false)
+  
+script: mvn verify --batch-mode javadoc:javadoc -P travis,$HADOOP_PROFILE | pv -fbi 60 > mvn_verify.log || (cat mvn_verify.log && false)