forked from conda-forge/nansat-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
61 lines (49 loc) · 2.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
# This file was generated automatically from conda-smithy. To update this configuration,
# update the conda-forge.yml and/or the recipe/meta.yaml.
language: generic
os: osx
osx_image: xcode6.4
env:
matrix:
- CONFIG=osx_python2.7
- CONFIG=osx_python3.5
- CONFIG=osx_python3.6
global:
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml.
- secure: "IU/AuT6JHmGlPgY2mflT1fCsE0RM6vtj2NZk6SkyKTp780GwDKGJZ6jHl9Q/F3Yz+9qvDgWOtuqX0NijVR53JSBE5CW0iFqNrlJvb6T1mUz+2yEED1Tb996TKeTBkMstsJA70jrh9D+qQTXOhBLgLYu7lNIxqWLphGTfdeEB7RxMBM10XDONpzlBbjSZJM1EiWV0GOSI2yvWuuC0vNTthmJTEb6eF5fhNLQsWynmSjlOOywY7oYI+RaL9lP1FHpaRNEtR4P8Nfw+B44FCNR7w4PPMMaAVJuUaoYxGyRkdfQg2Lt9y40DSRtVbsjNQNjYPPJHmX+gHNtbvVtgPSksFZ7P6i6b/UffGUE9DknFyBuBfu5df0ZwmzIY4vEBQl+yZJhAryOUBP0aebUUSKPAbdvnZHPz8yjqI3A9ro9ZnfEefbf4AUtImxnCUGrTPfnp99+vOOI/0ZDV8baT7EcKvLzsQrhL+Jxr9Xekoi8y8T72FL0vHHHy5cstj+bLLvCE7QzB1XqGtQn7eh03IUWX/qznc8NypXavCQAt8FCiY/G3BkN4rRiDhKUySH9JcxeYt6+Ld4l3YpPR9JETz6OWv+69LxAJyCis1mWNMW3sSXbrqo4snDKc/adZGGXWGbYqpA+f1O7n4a6xcyoucfctUKvQqEUKZn0/3FvhpYUO8ZA="
before_install:
# Fast finish the PR.
- |
(curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \
python - -v --ci "travis" "${TRAVIS_REPO_SLUG}" "${TRAVIS_BUILD_NUMBER}" "${TRAVIS_PULL_REQUEST}") || exit 1
# Remove homebrew.
- |
echo ""
echo "Removing homebrew from Travis CI to avoid conflicts."
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew
chmod +x ~/uninstall_homebrew
~/uninstall_homebrew -fq
rm ~/uninstall_homebrew
install:
# Install Miniconda.
- |
echo ""
echo "Installing a fresh version of Miniconda."
MINICONDA_URL="https://repo.continuum.io/miniconda"
MINICONDA_FILE="Miniconda3-latest-MacOSX-x86_64.sh"
curl -L -O "${MINICONDA_URL}/${MINICONDA_FILE}"
bash $MINICONDA_FILE -b
# Configure conda.
- |
echo ""
echo "Configuring conda."
source /Users/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
conda install --yes --quiet conda-forge-ci-setup=1
source run_conda_forge_build_setup
script:
- conda build ./recipe -m ./.ci_support/${CONFIG}.yaml
- upload_or_check_non_existence ./recipe conda-forge --channel=main -m ./.ci_support/${CONFIG}.yaml