blob: a58d3a142710106fb73efe80a11c6d2788c79399 (
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
|
#! /bin/bash
# Bug 1386: Mesa 18.3.6 hardware renderer (Intel/AMD) freezes after native parenting
export LIBGL_ALWAYS_SOFTWARE=true
cd ~/jenkins
JENKINS_NODE_STARTUP_DIR=`pwd`
#scp chuckslave@jogamp.org:/srv/jenkins/war/WEB-INF/slave.jar .
curl -O https://jogamp.org/chuck/jnlpJars/agent.jar
function connect_2 {
. ./profile.ant
. ./profile.amd64.java17
export LIBGL_ALWAYS_SOFTWARE=true
export SOURCE_LEVEL=1.8
export TARGET_LEVEL=1.8
export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar
export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
java -version
sshpid=
while true ; do
if [ ! -z "$sshpid" ] ; then
kill -9 $sshpid
fi
if [ -e stop_node ] ; then
exit 1
fi
ssh -o "ServerAliveInterval 30" -o "ServerAliveCountMax 5" -o "TCPKeepAlive yes" chuckslave@jogamp.org -L 6002:localhost:5555 -N &
sshpid=$!
java -server -Xmx512m -XX:+UseCompressedOops -jar agent.jar -jnlpUrl https://jogamp.org/chuck/computer/linux-x86_64-jau-002/slave-agent.jnlp
done
}
function connect_31 {
. ./profile.ant
. ./profile.amd64.j2se17
export SOURCE_LEVEL=1.8
export TARGET_LEVEL=1.8
export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar
export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
# arm-linux-gnueabi == armel triplet
PATH=$JENKINS_NODE_STARTUP_DIR/toolchain/armhf-linux-gnueabi/bin:$PATH
export PATH
export TARGET_PLATFORM_SYSROOT=`gcc --print-sysroot`
export TARGET_PLATFORM_USRROOT=/opt-linux-armv6-armhf
export TARGET_PLATFORM_USRLIBS=$TARGET_PLATFORM_USRROOT/usr/lib
export TARGET_JAVA_LIBS=$TARGET_PLATFORM_USRROOT/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
if [ -e stop_node ] ; then
exit 1
fi
ssh -o "ServerAliveInterval 30" -o "ServerAliveCountMax 5" -o "TCPKeepAlive yes" chuckslave@jogamp.org -L 6031:localhost:5555 -N &
sshpid=$!
java -server -Xmx512m -XX:+UseCompressedOops -jar agent.jar -jnlpUrl https://jogamp.org/chuck/computer/linux-arm32-armv7hf-jau-031/slave-agent.jnlp
done
}
function connect_32 {
. ./profile.ant
. ./profile.amd64.java17
export SOURCE_LEVEL=1.8
export TARGET_LEVEL=1.8
export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar
export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
# arm-linux-gnueabi == armel triplet
PATH=$JENKINS_NODE_STARTUP_DIR/toolchain/aarch64-linux-gnueabi/bin:$PATH
export PATH
export TARGET_PLATFORM_SYSROOT=`gcc --print-sysroot`
export TARGET_PLATFORM_USRROOT=/opt-linux-arm64
export TARGET_PLATFORM_USRLIBS=$TARGET_PLATFORM_USRROOT/usr/lib
export TARGET_JAVA_LIBS=$TARGET_PLATFORM_USRROOT/jre/lib/aarch64
export GLUEGEN_CPPTASKS_FILE=make/lib/gluegen-cpptasks-linux-aarch64.xml
export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode"
java -version
sshpid=
while true ; do
if [ ! -z "$sshpid" ] ; then
kill -9 $sshpid
fi
if [ -e stop_node ] ; then
exit 1
fi
ssh -o "ServerAliveInterval 30" -o "ServerAliveCountMax 5" -o "TCPKeepAlive yes" chuckslave@jogamp.org -L 6032:localhost:5555 -N &
sshpid=$!
java -server -Xmx512m -XX:+UseCompressedOops -jar agent.jar -jnlpUrl https://jogamp.org/chuck/computer/linux-arm64-aarch64-jau-032/slave-agent.jnlp
done
}
function connect_41 {
. ./profile.ant
. ./profile.amd64.java17
export ANDROID_HOME=/opt-linux-x86_64/android-sdk-linux_x86_64
export ANDROID_API_LEVEL=24
export ANDROID_HOST_TAG=linux-x86_64
export ANDROID_ABI=arm64-v8a
if [ -e ${JENKINS_NODE_STARTUP_DIR}/setenv-android-tools.sh ] ; then
. ${JENKINS_NODE_STARTUP_DIR}/setenv-android-tools.sh
else
echo "${JENKINS_NODE_STARTUP_DIR}/setenv-android-tools.sh doesn't exist!"
exit 1
fi
export GLUEGEN_CPPTASKS_FILE=make/lib/gluegen-cpptasks-android-aarch64.xml
export GLUEGEN_PROPERTIES_FILE=/home/jogamp/android/gluegen.properties # for key signing props
export PATH_VANILLA=$PATH
export PATH=${ANDROID_TOOLCHAIN_ROOT}/${ANDROID_TOOLCHAIN_NAME}/bin:${ANDROID_TOOLCHAIN_ROOT}/bin:${ANDROID_HOME}/platform-tools:${ANDROID_BUILDTOOLS_ROOT}:${PATH}
echo PATH ${PATH} 2>&1 | tee -a ${LOGF}
echo clang `which clang` 2>&1 | tee -a ${LOGF}
export SOURCE_LEVEL=1.8
export TARGET_LEVEL=1.8
export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar
export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
#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
if [ -e stop_node ] ; then
exit 1
fi
ssh -o "ServerAliveInterval 30" -o "ServerAliveCountMax 5" -o "TCPKeepAlive yes" chuckslave@jogamp.org -L 6041:localhost:5555 -N &
sshpid=$!
java -server -Xmx512m -XX:+UseCompressedOops -jar agent.jar -jnlpUrl https://jogamp.org/chuck/computer/android-arm64-aarch64-jau-041/slave-agent.jnlp
done
}
connect_2 > linux-x86_64-jau-002.log 2>&1 &
disown $!
connect_32 > linux-arm64-aarch64-jau-032.log 2>&1 &
disown $!
connect_31 > linux-arm32-armv7hf-jau-031.log 2>&1 &
disown $!
connect_41 > android-arm64-aarch64-jau-041.log 2>&1 &
disown $!
|