source: issm/branches/trunk-larour-NatGeoScience2016/packagers/ubuntu/package.sh@ 21243

Last change on this file since 21243 was 20610, checked in by glperez, 9 years ago

CHG: Modified packager script to upload to ross.

  • Property svn:executable set to *
File size: 1.5 KB
Line 
1#!/bin/bash
2
3echo "modify generic"
4cd $ISSM_DIR/bin
5cat generic_static.m | sed -e "s/generic_static/generic/g" > generic.m
6echo "move mpiexec to bin"
7
8#Check that test101 runs
9cd $ISSM_DIR/test/NightlyRun
10rm matlab.log
11$MATLAB_DIR/bin/matlab -nojvm -nosplash -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
12
13if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
14 echo "test101 FAILED"
15 exit 1;
16else
17 echo "test101 passed"
18fi
19
20tarball_name='issm-ubuntu-static_build.tar.gz'
21
22echo "Cleanup first"
23cd $ISSM_DIR
24rm $tarball_name
25
26echo "Creating tarball: ${tarball_name}"
27cd $ISSM_DIR
28rm -rf trunk
29mkdir trunk
30cp -rf bin lib test examples trunk/
31tar -czf $tarball_name trunk
32ls -lah $tarball_name
33
34echo "Shipping binaries to website"
35
36# We're using public key authentication method to upload the tarball The
37# following lines check to see if the SSH Agent is running. If not, then it is
38# started and relevant information is forwarded to a script.
39pgrep "ssh-agent" > /dev/null
40if [ $? -ne 0 ]; then
41 echo "SSH Agent is not running. Starting it..."
42 ssh-agent > ~/.ssh/agent.sh
43else
44 echo "SSH Agent is running..."
45fi
46
47source ~/.ssh/agent.sh
48ssh-add ~/.ssh/ubuntu-bins_jenkins-to-ross
49
50scp $tarball_name ross.ics.uci.edu:/var/www/html/$tarball_name
51
52if [ $? -ne 0 ]; then
53 echo "The upload failed."
54 echo "Perhaps the SSH Agent was started by some other means."
55 echo "Try killing the agent and running again."
56fi
Note: See TracBrowser for help on using the repository browser.