Changeset 20492
- Timestamp:
- 04/11/16 14:01:19 (9 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/jenkins/macosx_pine-island_static
r20464 r20492 22 22 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \ 23 23 --with-fortran-lib="/usr/local/gfortran/lib/libgfortran.a /usr/local/gfortran/lib/libquadmath.a /usr/local/gfortran/lib/gcc/x86_64-apple-darwin14/5.2.0/libgcc.a" \ 24 --with-numthreads=4 \ 25 --enable-debugging' 24 --with-numthreads=4' 26 25 27 26 #PYTHON and MATLAB testing -
issm/trunk-jpl/packagers/macosx/package.sh
r18527 r20492 36 36 37 37 echo "Shipping binaries to website" 38 scp $tarball_name websites.jpl.nasa.gov:/home/larour/files/$tarball_name 38 39 # We're using public key authentication method to upload the tarball The 40 # following lines check to see if the SSH Agent is running. If not, then it is 41 # started and relevant information is forwarded to a script. 42 pgrep "ssh-agent" > /dev/null 43 if [ $? -ne 0 ]; then 44 echo "SSH Agent is not running. Starting it..." 45 ssh-agent > ~/.ssh/agent.sh 46 else 47 echo "SSH Agent is running..." 48 fi 49 50 source ~/.ssh/agent.sh 51 ssh-add ~/.ssh/macosx-bins_richese-to-ross 52 53 scp $tarball_name ross.ics.uci.edu:/var/www/html/$tarball_name 54 55 if [ $? -ne 0 ]; then 56 echo "The upload failed." 57 echo "Perhaps the SSH Agent was started by some other means." 58 echo "Try killing the agent and running again. 59 fi
Note:
See TracChangeset
for help on using the changeset viewer.