blob: 1b05e3365e5bdd8b8f0c31d3caa8b94f0843a801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#! /bin/bash
cd /Users/jogamp/jenkins
scp chuckslave@jogamp.org:/srv/jenkins/war/WEB-INF/slave.jar .
function connect_12 {
. /opt-share/etc/profile.ant
JAVA_HOME=`/usr/libexec/java_home -version 1.6`
PATH=$JAVA_HOME/bin:$PATH
export JAVA_HOME PATH
#JAVA7_EXE=`/usr/libexec/java_home -version 1.7.0_12`/bin/java
#export JAVA7_EXE
export SOURCE_LEVEL=1.6
export TARGET_LEVEL=1.6
export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar
export GLUEGEN_PROPERTIES_FILE="/Users/jogamp/gluegen-clang.properties"
export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
java -version
which git
sshpid=
while true ; do
if [ ! -z "$sshpid" ] ; then
kill -9 $sshpid
fi
ssh -o "ServerAliveInterval 30" -o "ServerAliveCountMax 5" -o "TCPKeepAlive yes" chuckslave@jogamp.org -L 6012:localhost:5555 -N &
sshpid=$!
java -server -Xmx1024m -jar slave.jar -jnlpUrl https://jogamp.org/chuck/computer/macosx64-NV320M-10_6-jogamp-x64-sgothel-012/slave-agent.jnlp
done
}
function connect_13 {
. /opt-share/etc/profile.ant
JAVA_HOME=`/usr/libexec/java_home -version 1.7`
PATH=$JAVA_HOME/bin:$PATH
export JAVA_HOME PATH
export SOURCE_LEVEL=1.6
export TARGET_LEVEL=1.6
export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar
export GLUEGEN_PROPERTIES_FILE="/Users/jogamp/gluegen-clang.properties"
export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
java -version
which git
sshpid=
while true ; do
if [ ! -z "$sshpid" ] ; then
kill -9 $sshpid
fi
ssh -o "ServerAliveInterval 30" -o "ServerAliveCountMax 5" -o "TCPKeepAlive yes" chuckslave@jogamp.org -L 6013:localhost:5555 -N &
sshpid=$!
java -server -Xmx1024m -jar slave.jar -jnlpUrl https://jogamp.org/chuck/computer/macosx64-NV320M-10_7-jogamp-x64-jre7-sgothel-013/slave-agent.jnlp
done
}
connect_12 > macosx64-NV320M-10_6-jogamp-x64-sgothel-012.log 2>&1 &
connect_13 > macosx64-NV320M-10_6-jogamp-x64-jre7-sgothel-013.log 2>&1 &
disown $!
|