-
Notifications
You must be signed in to change notification settings - Fork 7
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
Install cleanup #326
Open
downiec
wants to merge
13
commits into
master
Choose a base branch
from
install_cleanup
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Install cleanup #326
Changes from 8 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
806312f
update requirements
7f4337f
build script update
7feda20
add meta.yaml
4f01e5d
remove version pinning
945febc
updated meta files for conda upload
6753a81
Update conda build script for conda upload automation
e726c9b
Removed unecessary requirements.txt file and updated setup.sh accordi…
fc9d04f
Added tags and syntax update.
efed455
Merge branch 'master' of github.com:CDAT/vcdat into install_cleanup
18e93e8
Merge branch 'master' into install_cleanup
downiec 953bfd7
Merge branch 'install_cleanup' of github.com:CDAT/vcdat into install_…
e9eccd3
updated setup.sh
3fd25f7
Made build and conda_build scripts executable.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,5 +1,5 @@ | ||
.DS_Store | ||
node_modules | ||
*node_modules/* | ||
*.pyc | ||
backend/venv | ||
frontend/dist | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
export VERSION="1.0" | ||
export BUILD_NAME="rc2" | ||
export CONDA_BLD_PATH=~/conda-bld | ||
PLATFORM="osx-64" | ||
PKG="vcdat" | ||
|
||
if [ -d $CONDA_BLD_PATH ]; then | ||
rm -rf $CONDA_BLD_PATH | ||
fi | ||
echo "Creating build dir at" $CONDA_BLD_PATH | ||
mkdir $CONDA_BLD_PATH | ||
|
||
conda config --set anaconda_upload no | ||
if [ ! -z "$1" ]; then | ||
export TAG="$1" | ||
else | ||
export TAG="master" | ||
fi | ||
echo "Building" $VERSION"-"$BUILD_NAME "for label:" $TAG | ||
|
||
conda build -c conda-forge -c cdat . | ||
|
||
if [ $? -eq 1 ]; then | ||
echo "conda build failed" | ||
exit | ||
fi | ||
|
||
if [ ! -z "$1" ]; then | ||
anaconda upload -c cdat -l "$1" $CONDA_BLD_PATH/$PLATFORM/$PKG-$VERSION-$BUILD_NAME.tar.bz2 | ||
else | ||
anaconda upload -c cdat $CONDA_BLD_PATH/$PLATFORM/$PKG-$VERSION-$BUILD_NAME.tar.bz2 | ||
fi |
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,24 +1,26 @@ | ||
about: | ||
home: http://github.com/UV-CDAT/vcdat | ||
home: http://github.com/CDAT/vcdat | ||
package: | ||
name: vcdat | ||
version: "0.7.0" | ||
version: "1.0" | ||
requirements: | ||
build: | ||
- python | ||
- python =2 | ||
- setuptools | ||
- nodejs | ||
run: | ||
- python | ||
- python =2 | ||
- nodejs | ||
- flask | ||
- vcs 2.12 | ||
- cdms2 2.12 | ||
- cdutil 2.12 | ||
- genutil 2.12 | ||
- vcs 8.0 | ||
- cdms2 3.0 | ||
- cdutil 8.0 | ||
- genutil 8.1 | ||
- service_identity | ||
- vcsaddons 8.0 | ||
- vcs-js | ||
source: | ||
git_rev: v0.0.4 | ||
git_url: git://github.com/UV-CDAT/vcdat.git | ||
git_url: git://github.com/CDAT/vcdat.git | ||
build: | ||
noarch_python: false | ||
number: 1 |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I think this should read
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.
Yeah I think you're right. I went ahead and updated that. Thanks!