summaryrefslogtreecommitdiffstats
path: root/jenkins-server-slave-setup/nodes/sgothel-linux64-amd58xx-001_002.linuxARMv7l-030.androidARMv7l-040/start-ssh-jenkins-linux.sh
blob: 862f9d27fcd733e1709a0034fbf1c32eb2cfe6e4 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#! /bin/bash

cd ~/jenkins

JENKINS_NODE_STARTUP_DIR=`pwd`

scp chuckslave@jogamp.org:/srv/jenkins/war/WEB-INF/slave.jar .

function connect_1 {
  . /opt-share/etc/profile.ant
  . /opt-linux-x86/etc/profile.jre6
  . /opt-linux-x86/etc/profile.j2se6
  java -version
  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 6001:localhost:5555 -N &
    sshpid=$!
    java -server -Xmx512m -jar slave.jar -jnlpUrl https://jogamp.org/chuck/computer/linux64-AMD58xx-ubuntu10-jogamp-x32-sgothel-001/slave-agent.jnlp
  done
}

function connect_2 {
  . /opt-share/etc/profile.ant
  . /opt-linux-x86_64/etc/profile.jre6
  . /opt-linux-x86_64/etc/profile.j2se6
  java -version
  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 6002:localhost:5555 -N &
    sshpid=$!
    java -server -Xmx512m -jar slave.jar -jnlpUrl https://jogamp.org/chuck/computer/linux64-AMD58xx-ubuntu10-jogamp-x64-sgothel-002/slave-agent.jnlp
  done
}

function connect_30 {
  . /opt-share/etc/profile.ant
  . /opt-linux-x86_64/etc/profile.jre6
  . /opt-linux-x86_64/etc/profile.j2se6

    export NODE_LABEL=label/linux-armv7-img
    HOST_ROOT=/home/jogamp/JogAmpSlaveARMv7
    JENKINS_WS=$HOST_ROOT/workspace

    # arm-linux-gnueabi == armel triplet
    PATH=$JENKINS_NODE_STARTUP_DIR/arm-linux-gnueabi/bin:$PATH
    export PATH

    export HOST_UID=jogamp
    export HOST_IP=jogamp02
    export HOST_RSYNC_ROOT=ROOTDIR/$JENKINS_WS

    export TARGET_UID=jogamp
    export TARGET_IP=panda01
    export TARGET_ROOT=/home/jogamp/JogAmpSlaveARMv7
    export TARGET_ANT_HOME=/usr/share/ant

    export TARGET_PLATFORM_ROOT=/opt-linux-armv6-armel
    export TARGET_PLATFORM_LIBS=$TARGET_PLATFORM_ROOT/usr/lib
    export TARGET_JAVA_LIBS=$TARGET_PLATFORM_ROOT/jre/lib/arm

    export GLUEGEN_CPPTASKS_FILE=make/lib/gluegen-cpptasks-linux-armv6.xml

    export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode"

  java -version
  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 6030:localhost:5555 -N &
    sshpid=$!
    java -server -Xmx512m -jar slave.jar -jnlpUrl https://jogamp.org/chuck/computer/linuxARMv7-jogamp-arm32-sgothel-030/slave-agent.jnlp
  done
}

function connect_31 {
  . /opt-share/etc/profile.ant
  . /opt-linux-x86_64/etc/profile.jre6
  . /opt-linux-x86_64/etc/profile.j2se6

    export NODE_LABEL=label/linux-armv7hf-img
    HOST_ROOT=/home/jogamp/JogAmpSlaveARMv7hf
    JENKINS_WS=$HOST_ROOT/workspace

    # arm-linux-gnueabi == armel triplet
    PATH=$JENKINS_NODE_STARTUP_DIR/arm-linux-gnueabihf/bin:$PATH
    export PATH

    export HOST_UID=jogamp
    export HOST_IP=jogamp02
    export HOST_RSYNC_ROOT=ROOTDIR/$JENKINS_WS

    export TARGET_UID=jogamp
    export TARGET_IP=panda01
    export TARGET_ROOT=/home/jogamp/JogAmpSlaveARMv7hf
    export TARGET_ANT_HOME=/usr/share/ant

    export TARGET_PLATFORM_ROOT=/opt-linux-armv6-armhf
    export TARGET_PLATFORM_LIBS=$TARGET_PLATFORM_ROOT/usr/lib
    export TARGET_JAVA_LIBS=$TARGET_PLATFORM_ROOT/jre/lib/arm

    export GLUEGEN_CPPTASKS_FILE=make/lib/gluegen-cpptasks-linux-armv6hf.xml

    export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode"

  java -version
  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 6031:localhost:5555 -N &
    sshpid=$!
    java -server -Xmx512m -jar slave.jar -jnlpUrl https://jogamp.org/chuck/computer/linuxARMv7hf-jogamp-arm32hf-sgothel-031/slave-agent.jnlp
  done
}


function connect_40 {
    export NODE_LABEL=label/android-armv7-img
    HOST_ROOT=/home/jogamp/JogAmpSlaveARMv7_Android
    JENKINS_WS=$HOST_ROOT/workspace

    export HOST_UID=jogamp
    # jogamp02 - 10.1.0.122
    export HOST_IP=10.1.0.122
    export HOST_RSYNC_ROOT=ROOTDIR/$JENKINS_WS

    export TARGET_UID=jogamp
    export TARGET_IP=panda02
    #export TARGET_IP=jautab03
    #export TARGET_IP=jauphone04
    export TARGET_ADB_PORT=5555
    # needs executable bit (probably su)
    export TARGET_ROOT=/data/projects
    export TARGET_ANT_HOME=/usr/share/ant

    export NDK_ROOT=/opt-linux-x86/android-ndk
    export ANDROID_SDK_HOME=/opt-linux-x86/android-sdk-linux_x86

    echo NDK_ROOT $NDK_ROOT
    echo ANDROID_SDK_HOME $ANDROID_SDK_HOME

    export ANDROID_VERSION=9
    export SOURCE_LEVEL=1.6
    export TARGET_LEVEL=1.6
    export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar

    export GCC_VERSION=4.4.3
    HOST_ARCH=linux-x86
    export TARGET_TRIPLE=arm-linux-androideabi

    export NDK_TOOLCHAIN_ROOT=$NDK_ROOT/toolchains/${TARGET_TRIPLE}-${GCC_VERSION}/prebuilt/${HOST_ARCH}
    export TARGET_PLATFORM_ROOT=${NDK_ROOT}/platforms/android-${ANDROID_VERSION}/arch-arm

    # Need to add toolchain bins to the PATH. 
    export PATH="$NDK_TOOLCHAIN_ROOT/$TARGET_TRIPLE/bin:$ANDROID_SDK_HOME/platform-tools:$PATH"

    export GLUEGEN_CPPTASKS_FILE=make/lib/gluegen-cpptasks-android-armv6.xml

    #export JUNIT_DISABLED="true"
    #export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode"

  java -version
  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 6040:localhost:5555 -N &
    sshpid=$!
    java -server -Xmx512m -jar slave.jar -jnlpUrl https://jogamp.org/chuck/computer/androidARMv7-jogamp-arm32-sgothel-040/slave-agent.jnlp
  done

}

connect_1 > linux64-AMD58xx-ubuntu10-jogamp-x32-sgothel-001.log 2>&1 &
disown $!

connect_2 > linux64-AMD58xx-ubuntu10-jogamp-x64-sgothel-002.log 2>&1 &
disown $!

connect_30 > linuxARMv7-jogamp-arm32-sgothel-030.log 2>&1 &
disown $!

connect_31 > linuxARMv7hf-jogamp-arm32hf-sgothel-031.log 2>&1 &
disown $!

connect_40 > androidARMv7-jogamp-arm32-sgothel-040.log 2>&1 &
disown $!