-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add shell scripts for building and packaging #38
base: master
Are you sure you want to change the base?
Conversation
rjelkins
commented
Jun 21, 2017
- scripts allow for building all packages, installing to local env to test depenency issues, and packaging to a tar
install_packages="${d%/} $install_packages" | ||
done | ||
|
||
# remvoe ooi-status and create a separate env for that one, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct spelling: 'remove'...'dependencies' ... 'packages'
packages="$packages ${d%/}" | ||
done | ||
|
||
# seperate out ooi-status |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
separate
lol, this is some old code, I'm going to add Tim to it as he more or less took over managing building the conda things. Most of these scripts were to help streamline the build process and were done before I completely understood how conda worked. I mainly wanted to create a process that didn't require developers to push things up to the public repo to test out the resultant conda package. I think there may be some useful concepts in here that Tim may want to put into use or that developers may find helpful. |
|
||
# copy in create utility script | ||
cat > "$tarname/create" << HERE | ||
#!/bin/env bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the above line intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See my question