-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (27 loc) · 1.67 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
# This file was generated automatically from conda-smithy. To update this configuration,
# update the conda-forge.yaml and/or the recipe/meta.yaml.
language: objective-c
env:
global:
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml.
- secure: "bulTaGt88GcriJy/vBxS30O8/Yj66sHuqfACtDIc9SRL2xZFvewetZrfGju9TyowO0j3Gn9Yz066QcQPIDS5KyCzbqHBUXIFP7tG6TpkWDB7y1UvgDV+LU7H36xblVURlZ2ZH/QHiNj50F32YMSI5hROPvYp/CSBjMbjxA6Bl/97fOK4eVCrIATgInfv2POWooeZTsQXZ21Rriwpge4wrrL56i3zJgYIVvoyW3b2mHNT6sZ74avzWi17549R8cqFom15cl+f8umvP9aJREPWxFKI6oQfIgZ/bzaWmlEsOHuMTP87iF1jIiV+nMnfe9DNisG80uivM3BlKdbX10+JBdXLMXQnX+UWm05PaEm3Nn9ffDFWwL7PnSXoIJ3ZWlXtoKynURo0g/DpM6x/r9xX7oud4wacZSUEKlIVm4jL+kIc03cj+fm7p60hpqx4BtkBN522vK93lk9kKCnsV/ifq24gbS9q+KTJ4/Gg7vQQLSQ6xtlJf4cLTothj2BCuu4qIKYzbyQeKPtdqkASmxFXEBa6jCkqK0OhS2pFbnKHTPkSOjUc5fg+v5W2UCFpSeRrQ2sYdMZgUTVuhDUxSL7Ay5irINxKvgUY6PmcyPR+UuK3lmwytmfn1SCbXeXY0vRCGX0L0+iCI73wK6lRukRJt+lNbswoH9e9rMKS/h6Gpt8="
before_install:
# Remove homebrew.
- brew remove --force $(brew list)
- brew cleanup -s
- rm -rf $(brew --cache)
install:
- |
MINICONDA_URL="http://repo.continuum.io/miniconda"
MINICONDA_FILE="Miniconda3-latest-MacOSX-x86_64.sh"
curl -O "${MINICONDA_URL}/${MINICONDA_FILE}"
bash $MINICONDA_FILE -b
export PATH=/Users/travis/miniconda3/bin:$PATH
conda config --set show_channel_urls true
conda update --yes conda
conda install --yes conda-build=1.20.0 jinja2 anaconda-client
conda config --add channels conda-forge
script:
- conda build ./recipe
after_success:
- ./ci_support/upload_or_check_non_existence.py ./recipe conda-forge --channel=main