-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: conda version bump and using new build image
- Loading branch information
1 parent
12245c0
commit ff5c640
Showing
3 changed files
with
5 additions
and
5 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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
@@ -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 |