-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (45 loc) · 1.16 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
branches:
# don't attempt to build branches intented for windows builds
except:
- /.*win.*/
os: linux
dist: trusty
language: generic
before_install:
# Install Miniconda.
- echo `pwd`
- |
echo ""
echo "Installing a fresh version of Miniconda."
MINICONDA_URL="https://repo.continuum.io/miniconda"
MINICONDA_FILE="Miniconda3-latest-Linux-x86_64.sh"
curl -L -O "${MINICONDA_URL}/${MINICONDA_FILE}"
bash $MINICONDA_FILE -b
# Configure conda.
- |
echo ""
echo "Configuring conda."
source /home/travis/miniconda3/bin/activate root
conda config --remove channels defaults
conda config --add channels defaults
conda config --add channels conda-forge
conda config --set show_channel_urls true
install:
- |
conda install -y \
jinja2 \
pygit2 \
click \
jira \
toolz \
ruamel.yaml \
setuptools_scm \
github3.py \
python-gnupg
script:
# clone arrow
- pushd ..
- git clone -b crossbow https://github.com/praveenbingo/arrow
# submit packaging tasks
- |
python arrow/dev/tasks/crossbow.py submit --job-prefix test -g gandiva