-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into TASK-2095
- Loading branch information
Showing
148 changed files
with
6,092 additions
and
2,819 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
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
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,29 @@ | ||
#!/bin/bash | ||
|
||
BRANCH_NAME=$1 | ||
|
||
if [[ -z $BRANCH_NAME ]]; then | ||
echo "The first parameter is mandatory and must be a valid branch name." | ||
exit 1 | ||
fi | ||
|
||
if [[ $BRANCH_NAME != "TASK-"* ]]; then | ||
echo "No need to check dependencies." | ||
exit 0 | ||
fi | ||
|
||
function install(){ | ||
local REPO=$1 | ||
cd /home/runner/work/ || exit 2 | ||
git clone https://github.com/opencb/"$REPO".git -b "$BRANCH_NAME" | ||
if [ -d "./$REPO" ]; then | ||
cd "$REPO" || exit 2 | ||
echo "Branch name $BRANCH_NAME already exists." | ||
mvn clean install -DskipTests | ||
else | ||
echo "$CURRENT Branch is NOT EQUALS $BRANCH_NAME " | ||
fi | ||
} | ||
|
||
install "java-common-libs" | ||
install "biodata" |
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
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
22 changes: 0 additions & 22 deletions
22
cellbase-app/app/cloud/docker/cellbase-base/Dockerfile.alpine
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
Oops, something went wrong.