Skip to content
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.

Commit

Permalink
enabled binstar build for celery
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed May 14, 2015
1 parent 327d4d8 commit c32a0a4
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 16 deletions.
68 changes: 68 additions & 0 deletions celery/.binstar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@

## The package attribute specifies a binstar package namespace to build the package to.
## This can be specified here or on the command line
package: celery

## You can also specify the account to upload to,
## you must be an admin of that account, this
## defaults to your user account
user: birdhouse

#===============================================================================
# Build Matrix Options
# These options may be a single item, a list or empty
# The resulting number of builds is [platform * engine * env]
#===============================================================================

## The platforms to build on.
## platform defaults to linux-64
# platform:
# - linux-64
# - linux-32
## The engine are the inital conda packages you want to run with
# engine:
# - python=2
# - python=3
## The env param is an environment variable list
# env:
# - MY_ENV=A CC=gcc
# - MY_ENV=B

#===============================================================================
# Script options
# These options may be broken out into the before_script, script and after_script
# or not, that is up to you
#===============================================================================

## Run before the script
before_script:
- conda update -n root conda-build
- conda config --add channels https://conda.binstar.org/birdhouse
## Put your main computations here!
script:
- conda build .
## This will run after the script regardless of the result of script
## BINSTAR_BUILD_RESULT=[succcess|failure]
# after_script:
# - echo "The build was a $BINSTAR_BUILD_RESULT" | tee artifact1.txt
## This will be run only after a successful build
# after_success:
# - echo "after_success!"
## This will be run only after a build failure
# after_failure:
# - echo "after_failure!"

#===============================================================================
# Build Results
# Build results are split into two categories: artifacts and targets
# You may omit either key and stiff have a successful build
# They may be a string, list and contain any bash glob
#===============================================================================

## Build Targets: Upload these files to your binstar package
## build targets may be a list of files (globs allows) to upload
## The special build targets 'conda' and 'pypi' may be used to
## upload conda builds
## e.g. conda is an alias for /opt/anaconda/conda-bld/<os-arch>/*.tar.bz2
build_targets:
- conda
16 changes: 0 additions & 16 deletions celery/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,6 @@ test:
- celery.loaders
- celery.security
- celery.task
- celery.tests
- celery.tests.app
- celery.tests.backends
- celery.tests.bin
- celery.tests.bin.proj
- celery.tests.compat_modules
- celery.tests.concurrency
- celery.tests.contrib
- celery.tests.events
- celery.tests.fixups
- celery.tests.functional
- celery.tests.security
- celery.tests.slow
- celery.tests.tasks
- celery.tests.utils
- celery.tests.worker
- celery.utils
- celery.utils.dispatch
- celery.worker
Expand Down

0 comments on commit c32a0a4

Please sign in to comment.