-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated ci scripts to allow for dev releases on other branches [skip ci]
- Loading branch information
1 parent
0ae76db
commit 63f84bb
Showing
3 changed files
with
21 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
#! /bin/bash | ||
|
||
REMOTE_PATH="update2/FEBioStudio2Dev/Linux/stage" | ||
if [ $# == 1 ] && [ "$1" != "develop" ]; then | ||
REMOTE_PATH="update2/FEBioStudio2Dev/branches/$1/Linux/stage" | ||
fi | ||
|
||
chmod +x cmbuild/bin/* | ||
scp cmbuild/bin/* repo:~/update2/FEBioStudio2Dev/Linux/stage/bin | ||
scp cmbuild/bin/* repo:~/$REMOTE_PATH/bin |
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,2 +1,8 @@ | ||
#! /bin/bash | ||
scp cmbuild/bin/Release/* repo:~/update2/FEBioStudio2Dev/Windows/stage/bin | ||
|
||
REMOTE_PATH="update2/FEBioStudio2Dev/Windows/stage" | ||
if [ $# == 1 ] && [ "$1" != "develop" ]; then | ||
REMOTE_PATH="update2/FEBioStudio2Dev/branches/$1/Windows/stage" | ||
fi | ||
|
||
scp cmbuild/bin/Release/* repo:~/$REMOTE_PATH/bin |
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,3 +1,9 @@ | ||
#! /bin/bash | ||
|
||
REMOTE_PATH="update2/FEBioStudio2Dev/macOS/stage" | ||
if [ $# == 1 ] && [ "$1" != "develop" ]; then | ||
REMOTE_PATH="update2/FEBioStudio2Dev/branches/$1/macOS/stage" | ||
fi | ||
|
||
chmod +x cmbuild/bin/FEBioStudio.app/Contents/MacOS/* | ||
scp -r cmbuild/bin/FEBioStudio.app/Contents/MacOS/* repo:~/update2/FEBioStudio2Dev/macOS/stage/FEBioStudio.app/Contents/MacOS | ||
scp -r cmbuild/bin/FEBioStudio.app/Contents/MacOS/* repo:~/$REMOTE_PATH/FEBioStudio.app/Contents/MacOS |