Skip to content

Commit 57021f6

Browse files
Testing new server
1 parent 4707cbf commit 57021f6

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/linux-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
contents: read # This is required for actions/checkout
1515
jobs:
1616
call_workflow:
17-
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable.yml@develop
17+
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable.yml@newServer
1818
with:
1919
runTests: ${{ (github.event_name == 'workflow_dispatch' && inputs.runTests) || (github.event_name == 'push' && contains(fromJSON('["develop"]'), github.ref_name)) }}
2020
package-name: febio4

ci/Linux/scp-to-repo.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ fi
77

88

99
set -e
10-
scp cmbuild/bin/* repo:~/$REMOTE_PATH/bin
11-
scp cmbuild/lib/* repo:~/$REMOTE_PATH/lib
12-
ssh repo "chmod +x $REMOTE_PATH/bin/febio4"
10+
scp cmbuild/bin/* febio-web:~/$REMOTE_PATH/bin
11+
scp cmbuild/lib/* febio-web:~/$REMOTE_PATH/lib
12+
ssh febio-web "chmod +x $REMOTE_PATH/bin/febio4"
1313

1414
# package and upload sdk
1515
pushd sdk
1616
zip -r sdk.zip include
1717
zip -r sdk.zip lib
18-
scp sdk.zip repo:~/$REMOTE_PATH/
18+
scp sdk.zip febio-web:~/$REMOTE_PATH/
1919
popd
2020

2121
if [ -f testLogs/Logs/* ]; then
22-
scp testLogs/Logs/* repo:~/TestSuite/Logs/linux.txt
22+
scp testLogs/Logs/* febio-web:~/TestSuite/Logs/linux.txt
2323
fi

0 commit comments

Comments
 (0)