[commit] r2624 - trunk/Doc
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Wed Apr 13 13:08:43 CDT 2016
Author: ksmyth
Date: Wed Apr 13 13:08:43 2016
New Revision: 2624
Log:
More release notes
Modified:
trunk/Doc/GME_release_howto.txt
Modified: trunk/Doc/GME_release_howto.txt
==============================================================================
--- trunk/Doc/GME_release_howto.txt Wed Apr 13 11:25:36 2016 (r2623)
+++ trunk/Doc/GME_release_howto.txt Wed Apr 13 13:08:43 2016 (r2624)
@@ -31,9 +31,10 @@
#Saving all symbols from the temporary symbol storage to the permanent symbol storage
#!/bin/bash
-curl -s -S http://build.isis.vanderbilt.edu/job/GME/label=build-slave9/lastBuild/consoleText | grep Finding\ ID
-curl -s -S http://build.isis.vanderbilt.edu/job/GME_x64/lastBuild/label=build-slave6/consoleText | grep Finding\ ID
-ssh build at kms1.isis.vanderbilt.edu 'cd symbolstmp && python ~/bin/pdb_promote.py 0000013601 0000013600' # x2 "Finding ID"
+ID=$(curl -s -S http://build.isis.vanderbilt.edu/job/GME/label=build-slave9/lastBuild/consoleText | grep Finding\ ID | sed 's/.*Finding ID.....//; s/'$'\r'//)
+ID_x64=$(curl -s -S http://build.isis.vanderbilt.edu/job/GME_x64/label=build-slave6/lastBuild/consoleText | grep Finding\ ID | sed 's/.*Finding ID.....//; s/'$'\r'//)
+echo $ID $ID_x64
+ssh build at kms1.isis.vanderbilt.edu 'cd symbolstmp && python ~/bin/pdb_promote.py '"$ID1 $ID2"
ssh build at kms1.isis.vanderbilt.edu rsync -avP symbols /media/7ce1528b-2101-4764-81e3-aed9112e3ad8/214/
#Downloading the build artifacts, i.e. two installers and the README file
@@ -60,7 +61,7 @@
# Update online documentation:
#!/bin/bash
-cd Doc
+cd GME-16.3.23_src/Doc
#ssh zsolt at kms1.isis.vanderbilt.edu sudo mount -t davfs -o uid=1006 https://forge.isis.vanderbilt.edu/gme/dav/ /home/build/gmedav
rsync --chmod=ugo+xr,u+w,o-w --perms --delete --delete-excluded -avP . --include=/Tutorial** --include google3a6cca9137b58176.html --include=index.html --include=markdown.css --include='*/' --include='**GME Manual and User Guide.pdf' --exclude=* build at kms1.isis.vanderbilt.edu:/home/build/gmedav/www/
@@ -87,3 +88,22 @@
scp Desktop/xfer/GME_16.3.23_symbols.7z repo at repo.isis.vanderbilt.edu:GME/16.3.23/ && \
ssh repo at repo.isis.vanderbilt.edu chmod -R a+r GME/16.3.23/
+
+
+Method 2: extract files from msi
+SetLocal EnableDelayedExpansion
+cd %userprofile%\Downloads
+set MSI=GME_x64-16.3.23.msi
+set BASENAME=GME-16.3.23
+set REPO_DIR=GME/16.3.23/
+curl -sS -O http://repo.isis.vanderbilt.edu/%REPO_DIR%%MSI || exit /b !ERRORLEVEL!
+set _NT_SYMBOL_PATH=srv*%userprofile%\Downloads\%BASENAME%_symbols*http://symbols.isis.vanderbilt.edu/
+"C:\Program Files\7-Zip\7z.exe" x %MSI% -o%BASENAME% || exit /b !ERRORLEVEL!
+del %BASENAME%\fil* %BASENAME%\F_CENTRAL*
+"c:\Program Files (x86)\Debugging Tools for Windows (x86)\symchk.exe" /r "%userprofile%\Downloads\%BASENAME%"
+pause Verify results and Press enter to continue
+"C:\Program Files\7-Zip\7z.exe" a %BASENAME%_symbols.7z %BASENAME%_symbols || exit /b !ERRORLEVEL!
+ at rem "C:\Program Files\7-Zip\7z.exe" l %BASENAME%_symbols.7z
+
+scp %BASENAME%_symbols.7z repo at repo.isis.vanderbilt.edu:%REPO_DIR%
+ssh repo at repo.isis.vanderbilt.edu chmod -R a+r %REPO_DIR%
More information about the gme-commit
mailing list