aboutsummaryrefslogtreecommitdiff
path: root/jwstdp/utils/jwst_delivery_prep.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jwstdp/utils/jwst_delivery_prep.sh')
-rwxr-xr-xjwstdp/utils/jwst_delivery_prep.sh135
1 files changed, 0 insertions, 135 deletions
diff --git a/jwstdp/utils/jwst_delivery_prep.sh b/jwstdp/utils/jwst_delivery_prep.sh
deleted file mode 100755
index 7aa1fb1..0000000
--- a/jwstdp/utils/jwst_delivery_prep.sh
+++ /dev/null
@@ -1,135 +0,0 @@
-#!/usr/bin/env bash
-# Designed to be run from within the `jwstdp` directory of the
-# astroconda-releases repository (as of 2018-05-30).
-#
-# Accepts the tag name assigned to a JWSTDP delivery to DMS.
-# 1) Creates a subdirectory with the provided tag name
-# 2) Copies the generated spec files from the spec_dir to the new release's
-# 'dev' subdirectory.
-# (Note: be sure to purge any old spec files that exist in that location
-# prior to running the build and this script.)
-# 3) Create symlinks to the latest version
-# 4) Generate a README.md
-# 4) Generate a set of instructions to include in the delivery notification
-# message body.
-#
-# Example usage:
-# jwst_delivery_prep 0.9.4
-
-# Python version name to use as target of '-latest' links.
-# takes the form of py##
-pyver="py36"
-
-# Location of generated delivery environment specification files.
-spec_dir="/eng/ssb/websites/ssbpublic/astroconda-releases-staging/"
-
-# Conda installer versions to suggest in README.md file.
-anaconda_ver="2019.03"
-miniconda_ver="4.6.14"
-
-tagname=$1
-
-# Create new astroconda-releases directory and copy generated spec files
-# from the specified directory into it.
-mkdir $tagname
-pushd $tagname
-mkdir dev
-cp ${spec_dir}/jwstdp* dev
-
-# Create latest linux link
-latest=$(ls -1r dev/*linux*${pyver}* | head -1)
-ln -s ${latest} latest-linux
-
-# Create latest osx link
-latest=$(ls -1r dev/*osx*${pyver}* | head -1)
-ln -s ${latest} latest-osx
-
-
-# Create README.md to reflect latest versions of release AND conda installer.
-#---------------------------------------------
-rm_message="
-# Installing
-
-A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations.
-
-For existing Anaconda3 or Miniconda3 installations:
-
-\`\`\`
-$ conda create -n jwstdp-${tagname} --file http://ssb.stsci.edu/releases/jwstdp/${tagname}/latest-linux
-\`\`\`
-
-As bugfixes are announced your current pipeline software may be updated by issuing the command:
-
-\`\`\`
-$ conda update -n jwstdp-${tagname} --file http://ssb.stsci.edu/releases/jwstdp/${tagname}/latest-linux
-\`\`\`
-
-# Installing From Scratch
-
-For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install
-
-**For Anaconda:**
-
-\`\`\`
-$ wget https://repo.continuum.io/archive/Anaconda3-${anaconda_ver}-Linux-x86_64.sh
-$ bash Anaconda3-${anaconda_ver}-Linux-x86_64.sh
-$ export PATH=\$HOME/anaconda3/bin:\$PATH
-\`\`\`
-
-**For Miniconda (if preferred):**
-
-\`\`\`
-$ wget https://repo.continuum.io/miniconda/Miniconda3-${miniconda_ver}-Linux-x86_64.sh
-$ bash Miniconda3-${miniconda_ver}-Linux-x86_64.sh
-$ export PATH=\$HOME/miniconda3/bin:\$PATH
-\`\`\`
-
-## Install the pipeline
-
-\`\`\`
-$ conda create -n jwstdp-${tagname} --file http://ssb.stsci.edu/releases/jwstdp/${tagname}/latest-linux
-\`\`\`
-
-## Enter a BASH shell
-
-\`\`\`
-$ bash
-\`\`\`
-
-## Activate the pipeline environment
-
-\`\`\`
-$ source activate jwstdp-${tagname}
-\`\`\`\n"
-
-printf "${rm_message}" > README.md
-
-
-# Compose message to dms-design mailing list.
-#---------------------------------------------
-printf "\n Send the following message body to: dms-design@stsci.edu\n"
-printf " with subject 'JWSTDP-${tagname} now available'"
-
-mail_message="\n\n
-Release Data:
-
-https://github.com/astroconda/astroconda-releases/tree/master/jwstdp/${tagname}
-
-
-Direct URL(s):\n
-
-Linux: http://ssb.stsci.edu/releases/jwstdp/${tagname}/latest-linux
-
-OS X: http://ssb.stsci.edu/releases/jwstdp/${tagname}/latest-osx
-
-
-To create a new environment:
-
-conda create -n <ENV_NAME> --file <URL>
-
-
-To upgrade an existing environment:
-
-conda update -n <ENV_NAME> --file <URL>\n\n"
-
-printf "${mail_message}"