source: issm/trunk-jpl/packagers/win10/package64.sh@ 23393

Last change on this file since 23393 was 23385, checked in by jdquinn, 6 years ago

CHG: Modified Windows 10 build and packager to use precompiled versions of gmsh and gmt

  • Property svn:executable set to *
File size: 2.9 KB
Line 
1#!/bin/bash
2
3TARBALL_NAME='ISSM-Win10-64'
4TARBALL=$TARBALL_NAME.tar.gz
5MATLAB_PATH="/cygdrive/c/Programs/MATLAB/R2015a"
6
7# Source Windows environment
8source $ISSM_DIR/externalpackages/windows/windows_environment.sh
9
10# Clean up from previous packaging
11echo "Cleaning up existing assets"
12cd $ISSM_DIR
13rm -rf trunk
14mkdir trunk
15
16# Add/modify required binaries
17cd $ISSM_DIR/bin
18
19echo "Making generic_static.m work like generic.m"
20cat generic_static.m | sed -e "s/generic_static/generic/g" > generic.m
21
22echo "Copying scripts from /src to /bin"
23rm $ISSM_DIR/bin/*.m
24find $ISSM_DIR/src/m -name '*.m' | xargs cp -t $ISSM_DIR/bin
25
26echo "Copying gmsh to bin"
27if [ -f ../externalpackages/gmsh/install/gmsh.exe ]; then
28 cp ../externalpackages/gmsh/install/gmsh.exe .
29else
30 echo "gmsh not found"
31fi
32
33# Copy gmt to trunk
34# NOTE: The following assumes the precompiled version of gmt
35echo "Moving gmt to externalpackages"
36if [ -f $ISSM_DIR/externalpackages/gmt/install/bin/gmt ]; then
37 mkdir $ISSM_DIR/trunk/externalpackages
38 mkdir $ISSM_DIR/trunk/externalpackages/gmt
39 cp -a $ISSM_DIR/externalpackages/gmt/install/. $ISSM_DIR/trunk/externalpackages/gmt
40else
41 echo "gmt not found"
42fi
43
44# Check that test 101 runs
45cd $ISSM_DIR/test/NightlyRun
46rm matlab.log
47$MATLAB_PATH/bin/matlab -nodisplay -nosplash -r "try, addpath $ISSM_DIR_WIN/bin $ISSM_DIR_WIN/lib; runme('id',101); exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
48
49# Wait until MATLAB closes
50sleep 5
51pid=$(ps aux -W | grep MATLAB | awk '{printf("%s\n","MATLAB");}')
52while [ -n "$pid" ]
53do
54 pid=$(ps aux -W | grep MATLAB | awk '{printf("%s\n","MATLAB");}')
55 sleep 1
56done
57
58if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
59 echo "test101 FAILED"
60 exit 1;
61else
62 echo "test101 passed"
63fi
64
65# Create tarball
66echo "Creating tarball: ${TARBALL_NAME}"
67cd $ISSM_DIR
68rm -f $TARBALL
69cp -rf bin lib test examples scripts trunk/
70
71# Create link to gmt from bin
72# NOTE: It is important that we are in the destination dir when sym linking so that the path is relative
73if [ -f $ISSM_DIR/trunk/externalpackages/gmt/bin/gmt ]; then
74 cd $ISSM_DIR/trunk/bin
75 ln -s ../externalpackages/gmt/bin/gmt.exe ./gmt
76fi
77
78cd $ISSM_DIR
79tar -czf $TARBALL trunk
80ls -lah $TARBALL
81
82# Ship binaries to website
83echo "Shipping binaries to website"
84
85# We're using public key authentication method to upload the tarball The
86# following lines check to see if the SSH Agent is running. If not, then it is
87# started and relevant information is forwarded to a script.
88pgrep "ssh-agent" > /dev/null
89
90if [ $? -ne 0 ]; then
91 echo "SSH agent is not running. Starting it..."
92 ssh-agent > ~/.ssh/agent.sh
93else
94 echo "SSH agent is running..."
95fi
96
97source ~/.ssh/agent.sh
98ssh-add ~/.ssh/win_bins-geidi_prime_to_ross
99
100scp $TARBALL jenkins@ross.ics.uci.edu:/var/www/html/$TARBALL
101
102if [ $? -ne 0 ]; then
103 echo "The upload failed."
104 echo "Perhaps the SSH agent was started by some other means."
105 echo "Try killing the agent and running again."
106fi
Note: See TracBrowser for help on using the repository browser.