Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Jul 26, 2018
0 parents commit 706af5c
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# 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: ruby

# don't build twice
if: tag IS blank

env:
global:
- PLAT=x86_64
- TRAVIS_TAG=build-266-ubuntu-trusty
- BUILD_REF=b10cb0901982c4c0e08c5eaafc0c7998682712b2
- ARROW_VERSION=0.9.1.dev426

before_install:
- sudo apt update -y -qq
- |
sudo apt install -y -qq \
autoconf-archive \
build-essential \
cmake \
debhelper \
devscripts \
git \
gtk-doc-tools \
libboost-filesystem-dev \
libboost-regex-dev \
libboost-system-dev \
libgirepository1.0-dev \
libglib2.0-doc \
libjemalloc-dev \
lsb-release \
nvidia-cuda-toolkit \
pkg-config \
python3-dev \
python3-numpy
before_script:
- git clone -b ARROW-2915 https://github.com/kszucs/arrow arrow
- git -C arrow checkout b10cb0901982c4c0e08c5eaafc0c7998682712b2

script:
- pushd arrow/dev/tasks/linux-packages
- rake version:update
- rake dist
- rake apt:build APT_TARGETS=ubuntu-trusty

deploy:
provider: releases
api_key: $CROSSBOW_GITHUB_TOKEN
file_glob: true
file:
- "**/*.deb"
- "**/*.dsc"
- "**/*.debian.tar.gz"
- "**/*.orig.tar.gz"
skip_cleanup: true
on:
tags: true

notifications:
email:
- szucs.krisztian@gmail.com

0 comments on commit 706af5c

Please sign in to comment.