Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI User committed Oct 26, 2018
0 parents commit a66e814
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .travis.yml
@@ -0,0 +1,66 @@
# 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.

os: linux
dist: trusty
sudo: required
language: cpp
compiler: gcc
services:
- docker

# don't build twice
if: tag IS blank

env:
global:
- PLAT=x86_64
- TRAVIS_TAG=test-34-ubuntu-trusty-gandiva
- ARROW_TRAVIS_USE_TOOLCHAIN=1
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"

before_install:
- eval "${MATRIX_EVAL}"
- ulimit -c unlimited -S
- |
sudo bash -c "echo -e 'Acquire::Retries 10; Acquire::http::Timeout \"20\";' > /etc/apt/apt.conf.d/99-travis-retry"
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update -qq
before_script:
- git clone -b crossbow https://github.com/praveenbingo/arrow arrow
- git -C arrow checkout c712f8010bf034d0268d0a2cbb62c6afb5a6193b
- mkdir -p dist
- arrow/ci/travis_install_linux.sh
- arrow/ci/travis_install_clang_tools.sh
- export TRAVIS_BUILD_DIR=$TRAVIS_BUILD_DIR/arrow
- arrow/dev/tasks/gandiva/build_cpp_crossbow.sh

script:
- arrow/dev/tasks/gandiva/build_java_crossbow.sh

deploy:
provider: releases
api_key: $CROSSBOW_GITHUB_TOKEN
file_glob: true
file: dist/*.jar
skip_cleanup: true
on:
tags: true

notifications:
email:
- praveen@dremio.com

0 comments on commit a66e814

Please sign in to comment.