Browse Source

Nightly build script now tries to build new launchers.

Move from ~/google to ~/working/nightly/ (Issue 3528)
I've symlinked ~/working/nightly to ~/google on renji untill everything else is done.

Change-Id: If32642e52b6287c07d2ef06e514cb0c53c779ba7
Reviewed-on: http://gerrit.dmdirc.com/509
Automatic-Compile: Gregory Holmes <greboid@dmdirc.com>
Reviewed-by: Gregory Holmes <greboid@dmdirc.com>
tags/0.6.3b1
Shane Mc Cormack 14 years ago
parent
commit
56a9ce1181
3 changed files with 7 additions and 3 deletions
  1. 5
    1
      BuildAll.sh
  2. 1
    1
      DoReports.sh
  3. 1
    1
      launcher/createUpdate.sh

+ 5
- 1
BuildAll.sh View File

@@ -10,7 +10,7 @@ env
10 10
 WWWDIR="/home/dmdirc/www"
11 11
 
12 12
 # Path to trunk
13
-MYDIR="/home/dmdirc/google"
13
+MYDIR="/home/dmdirc/working/nightly"
14 14
 
15 15
 # Path to scripts
16 16
 SCRIPTDIR="/home/dmdirc/scripts"
@@ -114,6 +114,10 @@ else
114 114
 		ln -sf "${WWWDIR}/nightly/DMDirc-${FILEDATA}.dmg" $WWWDIR/nightly/DMDirc_latest.dmg
115 115
 	fi;
116 116
 	
117
+	# Update Launchers
118
+	cd ${MYDIR}/launcher
119
+	sh ${MYDIR}/launcher/createUpdate.sh
120
+	
117 121
 	# Do normal reports
118 122
 	if [ "${IS_BAMBOO}" == "" ]; then
119 123
 		/bin/sh $MYDIR/DoReports.sh

+ 1
- 1
DoReports.sh View File

@@ -8,7 +8,7 @@
8 8
 env
9 9
 
10 10
 # Path to trunk
11
-MYDIR="/home/dmdirc/google"
11
+MYDIR="/home/dmdirc/working/nightly"
12 12
 
13 13
 # Path to scripts
14 14
 SCRIPTDIR="/home/dmdirc/scripts"

+ 1
- 1
launcher/createUpdate.sh View File

@@ -1,6 +1,6 @@
1 1
 #!/bin/sh
2 2
 # This script generates the launcher updates
3
-LAUNCHERDIR="/home/dmdirc/google/launcher"
3
+LAUNCHERDIR=`dirname $0`
4 4
 LAUNCHERUPDATEDIR="/home/dmdirc/www/updates/launchers/"
5 5
 
6 6
 UNIXVERSION=`cat ${LAUNCHERDIR}/unix/DMDirc.sh | grep LAUNCHERVERSION= | awk -F\" '{print $2}'`

Loading…
Cancel
Save