Skip to content

Commit

Permalink
Updated scp-to-repo scripts to include test suite logs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrossherron committed Apr 22, 2024
1 parent 8d20fb1 commit e2930c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/Linux/scp-to-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ set -e
scp cmbuild/bin/* repo:~/update2/FEBioStudio2Dev/Linux/stage/bin
scp cmbuild/lib/* repo:~/update2/FEBioStudio2Dev/Linux/stage/lib
ssh repo "chmod +x update2/FEBioStudio2Dev/Linux/stage/bin/febio4"


if [ -f testLogs/Logs/* ]; then
scp testLogs/Logs/* repo:~/TestSuite/Logs/linux.txt
fi
4 changes: 4 additions & 0 deletions ci/Windows/scp-to-repo.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
#! /bin/bash
scp cmbuild/bin/Release/* repo:~/update2/FEBioStudio2Dev/Windows/stage/bin

if [ -f testLogs/Logs/* ]; then
scp testLogs/Logs/* repo:~/TestSuite/Logs/windows.txt
fi
4 changes: 4 additions & 0 deletions ci/macOS/scp-to-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
scp cmbuild/bin/* repo:~/update2/FEBioStudio2Dev/macOS/stage/FEBioStudio.app/Contents/MacOS
scp cmbuild/lib/* repo:~/update2/FEBioStudio2Dev/macOS/stage/FEBioStudio.app/Contents/Frameworks
ssh repo "chmod +x update2/FEBioStudio2Dev/macOS/stage/FEBioStudio.app/Contents/MacOS/febio4"

if [ -f testLogs/Logs/* ]; then
scp testLogs/Logs/* repo:~/TestSuite/Logs/macOS.txt
fi

0 comments on commit e2930c8

Please sign in to comment.