-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from dalcinl/update-3.0.0
Update 3.0.0
- Loading branch information
Showing
8 changed files
with
129 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build__CONDA_PY_27: | ||
working_directory: ~/test | ||
machine: true | ||
environment: | ||
- CONDA_PY: "27" | ||
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_PY=${CONDA_PY}" | ||
- run: | ||
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. | ||
command: ./ci_support/run_docker_build.sh | ||
build__CONDA_PY_35: | ||
working_directory: ~/test | ||
machine: true | ||
environment: | ||
- CONDA_PY: "35" | ||
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_PY=${CONDA_PY}" | ||
- run: | ||
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. | ||
command: ./ci_support/run_docker_build.sh | ||
build__CONDA_PY_36: | ||
working_directory: ~/test | ||
machine: true | ||
environment: | ||
- CONDA_PY: "36" | ||
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_PY=${CONDA_PY}" | ||
- 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_PY_27 | ||
- build__CONDA_PY_35 | ||
- build__CONDA_PY_36 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ | ||
python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters