Skip to content

Commit

Permalink
build: conda version bump and using new build image
Browse files Browse the repository at this point in the history
  • Loading branch information
amcpherson committed Mar 16, 2020
1 parent 12245c0 commit ff5c640
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build_conda.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

yum install gcc-c++ git -y
apt-get install g++ git -y
conda config --set always_yes true
conda config --add channels https://conda.anaconda.org/dranew
conda config --add channels 'bioconda'
conda install conda-build anaconda-client
conda build conda/remixt
anaconda -t $CONDA_UPLOAD_TOKEN upload /usr/local/conda-bld/linux-64/remixt-*.tar.bz2
anaconda -t $CONDA_UPLOAD_TOKEN upload /opt/conda/conda-bld/linux-64/remixt-*.tar.bz2

4 changes: 2 additions & 2 deletions conda/remixt/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

package:
name: remixt
version: 0.5.10
version: 0.5.11
# version: {{ data.get('version') }}

source:
git_url: git://github.com/amcpherson/remixt.git
git_rev: v0.5.10
git_rev: v0.5.11
# git_rev: v{{ data.get('version') }}

build:
Expand Down
2 changes: 1 addition & 1 deletion run_build_conda.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
docker run -v ${PWD}:/repo -w /repo -e CONDA_UPLOAD_TOKEN=$CONDA_UPLOAD_TOKEN -it conda/miniconda3-centos6 bash -e build_conda.sh
docker run -v ${PWD}:/repo -w /repo -e CONDA_UPLOAD_TOKEN=$CONDA_UPLOAD_TOKEN -it continuumio/miniconda3 bash -e build_conda.sh

0 comments on commit ff5c640

Please sign in to comment.