Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aflab
astrogeology
Plio
Commits
c05ac88d
Commit
c05ac88d
authored
7 years ago
by
Jay
Browse files
Options
Downloads
Patches
Plain Diff
Trying matrix build
parent
1fb215c8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.travis.yml
+18
-17
18 additions, 17 deletions
.travis.yml
with
18 additions
and
17 deletions
.travis.yml
+
18
−
17
View file @
c05ac88d
...
...
@@ -4,27 +4,22 @@ branches:
only
:
-
master
env
:
matrix
:
-
PYTHON_VERSION = "3.4"
-
PYTHON_VERSION = "3.5"
-
PYTHON_VERSION = "3.6"
os
:
-
linux
-
osx
before_install
:
install
:
# We do this conditionally because it saves us some downloading if the
# version is the same.
-
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
if [ "$PYTHON_VERSION" == 2.7 ]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
else
if ["$PYTHON_VERSION" == 2.7]; then
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh;
else
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
fi
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
fi
-
bash miniconda.sh -b -p $HOME/miniconda
-
export PATH="$HOME/miniconda/bin:$PATH"
...
...
@@ -34,12 +29,16 @@ install:
# Useful for debugging any issues with conda
-
conda info -a
# Install not using env because build needs to be in root env
install
:
# Create the env
-
conda create --yes -n test python=$TRAVIS_PYTHON_VERSION
-
source activate test
-
conda config --add channels conda-forge
-
conda config --add channels jlaura
-
conda install -c conda-forge gdal h5py
-
conda install pandas sqlalchemy pyyaml networkx affine
-
conda install -c jlaura pvl
protobu
f
-
conda install -c conda-forge gdal h5py
-
conda install pandas sqlalchemy pyyaml networkx affine
protobuf
-
conda install -c jlaura pvlf
# Development installation
-
conda install pytest pytest-cov sh anaconda-client
...
...
@@ -50,7 +49,9 @@ script:
after_success
:
-
coveralls
-
conda install conda-build && conda install anaconda-client && conda config --set anaconda_upload yes && conda build --token $CONDA_UPLOAD_TOKEN recipe
-
conda install conda-build anaconda-client
-
conda config --set anaconda_upload yes
-
conda build --token $CONDA_UPLOAD_TOKEN --python PYTHON_VERSION recipe
notifications
:
webhooks
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment