Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Noarch Python #4

Merged
merged 3 commits into from
Sep 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 2 additions & 52 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
version: 2

jobs:
build__CONDA_PY_27:
build:
working_directory: ~/test
machine: true
environment:
- CONDA_PY: "27"
steps:
- checkout
- run:
Expand All @@ -15,52 +13,6 @@ jobs:
./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
Expand All @@ -69,6 +21,4 @@ workflows:
version: 2
build_and_test:
jobs:
- build__CONDA_PY_27
- build__CONDA_PY_35
- build__CONDA_PY_36
- build
61 changes: 0 additions & 61 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ Summary: Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+.
Current build status
====================

Linux: [![Circle CI](https://circleci.com/gh/conda-forge/funcsigs-feedstock.svg?style=shield)](https://circleci.com/gh/conda-forge/funcsigs-feedstock)
OSX: [![TravisCI](https://travis-ci.org/conda-forge/funcsigs-feedstock.svg?branch=master)](https://travis-ci.org/conda-forge/funcsigs-feedstock)
Windows: [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/conda-forge/funcsigs-feedstock?svg=True)](https://ci.appveyor.com/project/conda-forge/funcsigs-feedstock/branch/master)
All platforms: [![Circle CI](https://circleci.com/gh/conda-forge/funcsigs-feedstock.svg?style=shield)](https://circleci.com/gh/conda-forge/funcsigs-feedstock)

Current release info
====================
Expand Down
74 changes: 0 additions & 74 deletions appveyor.yml

This file was deleted.

1 change: 0 additions & 1 deletion ci_support/run_docker_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ cat << EOF | docker run -i \
-v "${RECIPE_ROOT}":/recipe_root \
-v "${FEEDSTOCK_ROOT}":/feedstock_root \
-e HOST_USER_ID="${HOST_USER_ID}" \
-e CONDA_PY="${CONDA_PY}" \
-a stdin -a stdout -a stderr \
condaforge/linux-anvil \
bash || exit 1
Expand Down
3 changes: 2 additions & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ source:
sha256: {{ checksum }}

build:
number: 0
number: 1
noarch: python
script: python setup.py install --single-version-externally-managed --record=record.txt

requirements:
Expand Down