File tree 2 files changed +40
-0
lines changed
2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ # How to build the conda package
2
+
3
+ To build and upload the conda package, do:
4
+
5
+ ```
6
+ conda build .
7
+ ./upload-conda-package.sh <path_to_build_package.tar.bz2>
8
+ ```
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ #
4
+ # Upload conda package(s) to http://www.astro.washington.edu/users/mjuric/conda
5
+ # channel.
6
+ #
7
+
8
+ if [[ -z $1 ]]; then
9
+ echo " usage: $0 <package_tarball> [<package_tarball> [...]]"
10
+ exit -1
11
+ fi
12
+
13
+ set -e
14
+
15
+
16
+ CONDA=" /astro/apps6/opt/anaconda2.4/bin/conda"
17
+ DIR_BASE=" public_html/html/conda"
18
+
19
+ # Decide where to upload
20
+ if [[ $( uname) == Linux ]]; then
21
+ DIR=" $DIR_BASE /linux-64/"
22
+ elif [[ $( uname) == Darwin ]]; then
23
+ DIR=" $DIR_BASE /osx-64/"
24
+ else
25
+ echo " unknown OS $( uname) . aborting."
26
+ fi
27
+
28
+ # Upload the packages
29
+ scp " $@ " " $HOST :$DIR "
30
+
31
+ # Reindex the channel
32
+ ssh " $HOST " " $CONDA " index " $DIR "
You can’t perform that action at this time.
0 commit comments