Skip to content

Commit

Permalink
MNT: Re-rendered with conda-smithy 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jochym committed Feb 16, 2017
1 parent eba62e9 commit d6c87ea
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 5 deletions.
21 changes: 18 additions & 3 deletions .travis.yml
Expand Up @@ -10,26 +10,41 @@ env:
matrix:

- CONDA_NPY=111 CONDA_PY=27
- CONDA_NPY=112 CONDA_PY=27
- CONDA_NPY=111 CONDA_PY=35
- CONDA_NPY=112 CONDA_PY=35
- CONDA_NPY=111 CONDA_PY=36
- CONDA_NPY=112 CONDA_PY=36
global:
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml.
- secure: "sWrfRGZTyzf0lMmL1v9WbOwV75PNeyacSjz0QqSVszoOROFD6llqLKrpet1ldhpZQW5OqiWiqmW3Da6zveeioiK30JqU3lbcfVD1Yy2QJu1VpZxTza1ORoOhStGzKj7mocDGGSmlfdm7t24Iedl/E0WuQUWX2W99sXo/wpAYEBm5caYOiJuxFUF9we7O0h80hxVezUhg4eSwF5J0IINfvT/sfbckQOMz9Km8BZTCDH1R2XDsX94qC3N7GPlUmcBqh2MwhkOH0C+igoIHbzlMlm/Lmo4IH6VHQjZn9O+B5vRqgieH/C5umUdICiXOG5CrC9mhFQKT/IjZS3FvEmLoEXSSFcYLO0UopBstza3TQePwnfrOXvdaWRakm6uENcWiems7ZlXpfIChNJJggZtQHnJxkkEG9taa27/+oMckgMLgax09Sa7n41sjLCOiw8juSUzRQV+eK288ariqisZP2njUZ8PF22h1/EAfVjdGvUATfVLDQMAEAcVRLodwfW/FLh7r/JJPkgQvCkLXN5otkzMjkje9u1JUmsxsFm5D4xIwKvo6D7h8gqxyZ2FnGPyV4VRxdH6pPv7aK3eku59+GLj9Sow6l+lbPl1JyIJihXIv0Z7pPTFg8odayyRxaPhe/mUEjPn2hRSqg/8bjkBNvd2ziWZZEMXfwRUapV/GdB4="


before_install:
# Remove homebrew.
- brew remove --force --ignore-dependencies $(brew list)
- brew cleanup -s
- rm -rf $(brew --cache)
- |
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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,5 +1,5 @@
BSD 3-clause license
Copyright (c) conda-forge
Copyright (c) 2015-2017, conda-forge
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
30 changes: 30 additions & 0 deletions appveyor.yml
Expand Up @@ -24,6 +24,16 @@ environment:
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda-x64

- TARGET_ARCH: x86
CONDA_NPY: 112
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda

- TARGET_ARCH: x64
CONDA_NPY: 112
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda-x64

- TARGET_ARCH: x86
CONDA_NPY: 111
CONDA_PY: 35
Expand All @@ -34,6 +44,16 @@ environment:
CONDA_PY: 35
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64

- TARGET_ARCH: x86
CONDA_NPY: 112
CONDA_PY: 35
CONDA_INSTALL_LOCN: C:\\Miniconda35

- TARGET_ARCH: x64
CONDA_NPY: 112
CONDA_PY: 35
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64

- TARGET_ARCH: x86
CONDA_NPY: 111
CONDA_PY: 36
Expand All @@ -44,6 +64,16 @@ environment:
CONDA_PY: 36
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64

- TARGET_ARCH: x86
CONDA_NPY: 112
CONDA_PY: 36
CONDA_INSTALL_LOCN: C:\\Miniconda35

- TARGET_ARCH: x64
CONDA_NPY: 112
CONDA_PY: 36
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64


# We always use a 64-bit machine, but can build x86 distributions
# with the TARGET_ARCH variable.
Expand Down
23 changes: 22 additions & 1 deletion ci_support/run_docker_build.sh
Expand Up @@ -41,25 +41,46 @@ conda clean --lock
conda install --yes --quiet conda-forge-build-setup
source run_conda_forge_build_setup
# Embarking on 3 case(s).
# Embarking on 6 case(s).
set -x
export CONDA_NPY=111
export CONDA_PY=27
set +x
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
set -x
export CONDA_NPY=112
export CONDA_PY=27
set +x
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
set -x
export CONDA_NPY=111
export CONDA_PY=35
set +x
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
set -x
export CONDA_NPY=112
export CONDA_PY=35
set +x
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
set -x
export CONDA_NPY=111
export CONDA_PY=36
set +x
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
set -x
export CONDA_NPY=112
export CONDA_PY=36
set +x
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
EOF

0 comments on commit d6c87ea

Please sign in to comment.