You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by el...@apache.org on 2022/01/25 01:40:35 UTC

[hbase-filesystem] branch master updated: HBASE-26236 Simple travis build for hbase-filesystem (#28)

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

elserj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-filesystem.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d3d800  HBASE-26236 Simple travis build for hbase-filesystem (#28)
9d3d800 is described below

commit 9d3d800b6f8ba4542ca808dfadf9c12bdb9e2766
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Tue Jan 25 02:40:28 2022 +0100

    HBASE-26236 Simple travis build for hbase-filesystem (#28)
    
    Co-authored-by: Josh Elser <el...@apache.org>
---
 .travis.yml | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..3a86f63
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,36 @@
+# 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.
+
+language: java
+jdk:
+  - openjdk8
+  - openjdk11
+env:
+  - HADOOP_PROFILE=3.2
+  - HADOOP_PROFILE=3.3
+dist: xenial
+os: linux
+jobs:
+  fast_finish: true
+script:
+  - "mvn clean install -B -V -Dhadoop.profile=${HADOOP_PROFILE}"
+branches:
+  only:
+    - master
+git:
+  depth: 10000
+cache:
+  directories:
+    - $HOME/.m2