forked from conda-forge/r-base-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
64 lines (50 loc) · 2.79 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
62
63
64
# 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_c_compilerclangcxx_compilerclangxxfortran_compilergfortrantarget_platformosx-64
- CONFIG=osx_c_compilertoolchain_ccxx_compilertoolchain_cxxfortran_compilertoolchain_forttarget_platformosx-64
global:
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml.
- secure: "hwRyKuP+NYE7wdeFNYZ283AjwpT076Lu1/RCeT/kvxZEttG6510lPuBNsV0zhjHlkOfXKxEFm4xHtwE3q68Dl2sMGjVX5M+X2m6Pb7Ei1WBAdXOSZW92hsHUWu9v2fVCXa/Les2JTAd8BZRLF0eXUkQ2jg8qaXnSHOXcuzK8W8BBps8rc4nh8qR70aauJdOS0HLKi+zPfEw2pHSZeeMgXpuRumB8InS3OzTQQdoHtZeHakR8DtTW3W+0bzff7FQUPiEYYikgMlXCJLiMLB1CG0+edujagQEfeB3t6AkM+IV1cGBmhlzI5DWZd1O2XQm8kb74trenwEaqLPBcixwq68Z9IHOCH1jPaHIW6euIRRUZcT2fYBf0zeBPV0+XTHml2kXBgPXBMS/WDt+iqeKXmd+WNlR5fW/esxY0VunW82A6G+LTqv3ojkwmGmfLLyD9dp09KuOIgNRGLM2J6gcNZ3LxCERxwJLG3y3lLPJVEozYmJuylPVFCyjkPuT14+MKkPBp2cAeKfwRi3Uczo/lDathKr+wmW9SN48Q9lxp3wOaxqqpGhAuf/NvBQiAN1Xbjf19ZLFnZBIl5gKKUstR1HepDZPY+us1Luyp5P7F1v/wMIYUQ53VP0lUZyA9zPqxAaTfS9nqxfmIn+ETgmdv/dLzvA0OGce2nqTN54hbG6Q="
before_install:
# Fast finish the PR.
- |
(curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/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 install --yes --quiet conda-forge::conda-forge-ci-setup=2
setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml
source run_conda_forge_build_setup
# compiler cleanup
- |
mangle_compiler ./ ./recipe ./.ci_support/${CONFIG}.yaml
script:
# generate the build number clobber
- make_build_number ./ ./recipe ./.ci_support/${CONFIG}.yaml
- conda build ./recipe -m ./.ci_support/${CONFIG}.yaml --clobber-file ./.ci_support/clobber_${CONFIG}.yaml
- upload_package ./ ./recipe ./.ci_support/${CONFIG}.yaml