Skip to content

Commit

Permalink
Re-render the feedstock after CI registration.
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis-CI on github.com/conda-forge/staged-recipes committed Aug 20, 2017
1 parent 06c073a commit ab9241b
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 28 deletions.
52 changes: 52 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
version: 2

jobs:
build__CONDA_R_3.3.2:
working_directory: ~/test
machine: true
environment:
- CONDA_R: "3.3.2"
steps:
- checkout
- run:
name: Fast finish outdated PRs and merge PRs
command: |
./ci_support/fast_finish_ci_pr_build.sh
./ci_support/checkout_merge_commit.sh
- run:
command: docker pull condaforge/linux-anvil
- run:
name: Print conda-build environment variables
command: |
echo "CONDA_R=${CONDA_R}"
- run:
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
command: ./ci_support/run_docker_build.sh
build__CONDA_R_3.4.1:
working_directory: ~/test
machine: true
environment:
- CONDA_R: "3.4.1"
steps:
- checkout
- run:
name: Fast finish outdated PRs and merge PRs
command: |
./ci_support/fast_finish_ci_pr_build.sh
./ci_support/checkout_merge_commit.sh
- run:
command: docker pull condaforge/linux-anvil
- run:
name: Print conda-build environment variables
command: |
echo "CONDA_R=${CONDA_R}"
- run:
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
command: ./ci_support/run_docker_build.sh

workflows:
version: 2
build_and_test:
jobs:
- build__CONDA_R_3.3.2
- build__CONDA_R_3.4.1
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
* text=auto

*.patch binary
*.diff binary
meta.yaml text eol=lf
build.sh text eol=lf
bld.bat text eol=crlf
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ env:
matrix:

- CONDA_R=3.3.2
- CONDA_R=3.4.1
global:
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml.
- secure: "LjH4rBEEf+cD/qCj+OuOWSIKb7ge8E0XoNwqPzF7zlEkqhdqeKtTZFUMh8a5kQG0VY6DH/1f5iqaRxTZOo2mm57onIta7TVODAMpTMsoA5cDdZDfPbx3uJ8ZFWOUIGZXb1VUMYPRaLJS93BJ0uuYTmtwERq0VNvqJoOmiL/Fy/BnuiAQJ08qtIGNvR+tVqvQ4jrFUf+V8nO5jidnuT+0pCW3ydYcVmagtpDcD/5MV5fHulIxZTclaPrU5Mcrey23C9o+Fvt591mFmsNT3PLZcsbMtoqDhtkj25CcGfQSZdGH/P2pIrP8FoN8O6v1+Jxdeztwb7qUKZXhSOabbPpc5i/1Z64QMTEOFF5bSri/fWdKC/GPYS+wLB1V95uFh2RSWqgDk0U6FszfHhilMIMdSG+juO2M2fOEf/4452T6di4a3Ua+ugGeFfQkJCKAVRWWgdg7EV507FGBWOrJc1DKADSvSl+jaO2Oqyz9B+kyDOKPchU6ujbHD4R8og3tolAfzffbdGwBJYsNKJ54fL29/+UOg43ywCWPtnb/DuLpcqJWlhj11RAM4VyKKuGQc7cQwYjNjaSJx+Q9uDsWmzWd5Zmp0P9VMl4ntNaXSbYigBmYD53tYvhBSHpN2lWEdrxWdUjcHZlBXNMRmxiJOruuQq8OHlxvx2NKDzITtd+AKZs="
- secure: "yAagxKk5ah6yeNR4c/GI9PDgcj1ykqjBo8yl2egj7ShAiXhSc+Pc1Ooux9XV0tf5+XMBvbhgD0Vdt2tV4wGArudrmInlf9XL1POtsLUdunD6Bx8UYcDfRodkPVXCwzwT/C9s5ht+SM2JaAMTrFPi5ww5ov/va3W3uA7Pb+mpJWueNANX2unbjCSvdAs2bFQ8EYqut9wOJimzGLvq9FtKKqV8CqF3pkxiysHl4Yk3dNHBeB7XmNpMHJlihRQN0kx0JRxzepoB6eX0126WZiVIj1l3M5pFsoTJL9rl2yZiSbgpbv7dx2PKfTORxIu+tt3tf609rmECmXMja6FmuEHzDGatid4a0wEye0oBuv5mY+OaU9DVYXRETk9jdpL3jlCd/cXmRYJAqho7lKHSfFuY9Mnf3ZJvGcXOBQNWlbo4KyAHcmjF1cwDGz6Eaq8vAlr9g4S/VatooEdP+XZTd5V8jzDJNltHudPjw/6dwLRMYNuhWrGtNKWw9H0cS0gQbupscSjT91gfe+zVd6g1vwrnJujVstweohUcZKaJTaxMXCuDE8rfKF2JpFlm6WpxRzzUzJIKvt95yP1KzAiQHkuBcACxV2oaj872BA44E4Nx2Wms1rvZMMDpZ/sUjpubWAQVovP7Q09nQ7S+zEXLboBfDiS6f3ZXpi3NIdsPpML2p60="


before_install:
Expand Down
10 changes: 4 additions & 6 deletions ci_support/run_docker_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ cat << EOF | docker run -i \
-v "${RECIPE_ROOT}":/recipe_root \
-v "${FEEDSTOCK_ROOT}":/feedstock_root \
-e HOST_USER_ID="${HOST_USER_ID}" \
-e CONDA_R="${CONDA_R}" \
-a stdin -a stdout -a stderr \
condaforge/linux-anvil \
bash || exit 1
Expand All @@ -57,12 +58,9 @@ conda clean --lock
conda install --yes --quiet conda-forge-build-setup
source run_conda_forge_build_setup
# Embarking on 1 case(s).
set -x
export CONDA_R=3.3.2
set +x
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
conda build /recipe_root --quiet || exit 1
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
touch /feedstock_root/build_artefacts/conda-forge-build-done
EOF

Expand Down
19 changes: 0 additions & 19 deletions circle.yml

This file was deleted.

4 changes: 2 additions & 2 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
travis:
secure:
BINSTAR_TOKEN: LjH4rBEEf+cD/qCj+OuOWSIKb7ge8E0XoNwqPzF7zlEkqhdqeKtTZFUMh8a5kQG0VY6DH/1f5iqaRxTZOo2mm57onIta7TVODAMpTMsoA5cDdZDfPbx3uJ8ZFWOUIGZXb1VUMYPRaLJS93BJ0uuYTmtwERq0VNvqJoOmiL/Fy/BnuiAQJ08qtIGNvR+tVqvQ4jrFUf+V8nO5jidnuT+0pCW3ydYcVmagtpDcD/5MV5fHulIxZTclaPrU5Mcrey23C9o+Fvt591mFmsNT3PLZcsbMtoqDhtkj25CcGfQSZdGH/P2pIrP8FoN8O6v1+Jxdeztwb7qUKZXhSOabbPpc5i/1Z64QMTEOFF5bSri/fWdKC/GPYS+wLB1V95uFh2RSWqgDk0U6FszfHhilMIMdSG+juO2M2fOEf/4452T6di4a3Ua+ugGeFfQkJCKAVRWWgdg7EV507FGBWOrJc1DKADSvSl+jaO2Oqyz9B+kyDOKPchU6ujbHD4R8og3tolAfzffbdGwBJYsNKJ54fL29/+UOg43ywCWPtnb/DuLpcqJWlhj11RAM4VyKKuGQc7cQwYjNjaSJx+Q9uDsWmzWd5Zmp0P9VMl4ntNaXSbYigBmYD53tYvhBSHpN2lWEdrxWdUjcHZlBXNMRmxiJOruuQq8OHlxvx2NKDzITtd+AKZs=
BINSTAR_TOKEN: yAagxKk5ah6yeNR4c/GI9PDgcj1ykqjBo8yl2egj7ShAiXhSc+Pc1Ooux9XV0tf5+XMBvbhgD0Vdt2tV4wGArudrmInlf9XL1POtsLUdunD6Bx8UYcDfRodkPVXCwzwT/C9s5ht+SM2JaAMTrFPi5ww5ov/va3W3uA7Pb+mpJWueNANX2unbjCSvdAs2bFQ8EYqut9wOJimzGLvq9FtKKqV8CqF3pkxiysHl4Yk3dNHBeB7XmNpMHJlihRQN0kx0JRxzepoB6eX0126WZiVIj1l3M5pFsoTJL9rl2yZiSbgpbv7dx2PKfTORxIu+tt3tf609rmECmXMja6FmuEHzDGatid4a0wEye0oBuv5mY+OaU9DVYXRETk9jdpL3jlCd/cXmRYJAqho7lKHSfFuY9Mnf3ZJvGcXOBQNWlbo4KyAHcmjF1cwDGz6Eaq8vAlr9g4S/VatooEdP+XZTd5V8jzDJNltHudPjw/6dwLRMYNuhWrGtNKWw9H0cS0gQbupscSjT91gfe+zVd6g1vwrnJujVstweohUcZKaJTaxMXCuDE8rfKF2JpFlm6WpxRzzUzJIKvt95yP1KzAiQHkuBcACxV2oaj872BA44E4Nx2Wms1rvZMMDpZ/sUjpubWAQVovP7Q09nQ7S+zEXLboBfDiS6f3ZXpi3NIdsPpML2p60=
appveyor:
secure:
BINSTAR_TOKEN: MP4hZYylDyUWEsrt3u3cod2sbFeRwUziH02mvQOdbjsTO/l1yIxDkP/76rSIjcGC
BINSTAR_TOKEN: ipv/06DzgA7pzz2CIAtbPxZSsphDtF+JFyoWRnXkn3O8j7oRe3rzqj3LOoq2DZp4

0 comments on commit ab9241b

Please sign in to comment.