lava: Include test logs in uploaded artifact when make check fails
[lttng-ci.git] / scripts / system-tests / generate-properties-slave.sh
1 #!/bin/bash -xeu
2 # Copyright (C) 2016 - Francis Deslauriers <francis.deslauriers@efficios.com>
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 touch properties.txt
18
19 echo "# Setup endpoint
20 host_base = obj.internal.efficios.com
21 host_bucket = obj.internal.efficios.com
22 bucket_location = us-east-1
23 use_https = True
24
25 # Setup access keys
26 access_key = jenkins
27 secret_key = echo123456
28
29 # Enable S3 v4 signature APIs
30 signature_v2 = False" > "$WORKSPACE/s3cfg"
31
32 # Use all CPU cores
33 NPROC=$(nproc)
34 echo "NPROC=$NPROC" >> properties.txt
35
36 LINUX_PATH="$WORKSPACE/src/linux"
37 LTTNG_MODULES_PATH="$WORKSPACE/src/lttng-modules"
38
39 echo "LTTNG_MODULES_GIT=$LTTNG_MODULES_REPO" >> properties.txt
40 echo "LINUX_PATH=$LINUX_PATH" >> properties.txt
41 echo "LTTNG_MODULES_PATH=$LTTNG_MODULES_PATH" >> properties.txt
42
43 DEPLOYDIR="$WORKSPACE/deploy"
44 MODULES_INSTALL_FOLDER="$DEPLOYDIR/modules"
45
46 echo "DEPLOYDIR=$DEPLOYDIR" >> properties.txt
47 echo "MODULES_INSTALL_FOLDER=$MODULES_INSTALL_FOLDER" >> properties.txt
48
49 BUILD_NAME="$KERNEL_COMMIT_ID-$LTTNG_MODULES_COMMIT_ID"
50
51 echo "KERNEL_COMMIT_ID=$KERNEL_COMMIT_ID" >> properties.txt
52 echo "LTTNG_MODULES_COMMIT_ID=$LTTNG_MODULES_COMMIT_ID" >> properties.txt
53 echo "BUILD_NAME=$BUILD_NAME" >> properties.txt
54 echo "BUILD_DEVICE=$BUILD_DEVICE" >> properties.txt
55
56 echo "STORAGE_KERNEL_MODULE_SYMVERS=$STORAGE_KERNEL_FOLDER/symvers/$KERNEL_COMMIT_ID.$BUILD_DEVICE.symvers" >>properties.txt
57 echo "STORAGE_KERNEL_CONFIG=$STORAGE_KERNEL_FOLDER/config/$KERNEL_COMMIT_ID.$BUILD_DEVICE.config" >> properties.txt
58 echo "S3_STORAGE_KERNEL_MODULE_SYMVERS=$S3_STORAGE_KERNEL_FOLDER/symvers/$KERNEL_COMMIT_ID.$BUILD_DEVICE.symvers" >>properties.txt
59 echo "S3_STORAGE_KERNEL_CONFIG=$S3_STORAGE_KERNEL_FOLDER/config/$KERNEL_COMMIT_ID.$BUILD_DEVICE.config" >> properties.txt
60
61 echo "STORAGE_HOST=storage.internal.efficios.com" >> properties.txt
62 echo "STORAGE_USER=jenkins-lava" >> properties.txt
63
64 echo SSH_COMMAND="ssh -oStrictHostKeyChecking=no -i $identity_file" >> properties.txt
65 echo SCP_COMMAND="scp -oStrictHostKeyChecking=no -i $identity_file" >> properties.txt
66 echo S3_COMMAND="s3cmd -c ${WORKSPACE}/s3cfg" >> properties.txt
This page took 0.030199 seconds and 4 git commands to generate.