Lava: Print jobid at submission and test cases report at the end
[lttng-ci.git] / scripts / lttng-baremetal-tests / generate-properties-slave.sh
CommitLineData
b3d73c46
FD
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
17touch properties.txt
18
19# Use all CPU cores
20NPROC=$(nproc)
21echo "NPROC=$NPROC" >> properties.txt
22
23LTTNG_CI_PATH="$WORKSPACE/src/lttng-ci"
24LINUX_PATH="$WORKSPACE/src/linux"
25LTTNG_MODULES_PATH="$WORKSPACE/src/lttng-modules"
26
27echo "LTTNG_MODULES_GIT=git://git-mirror.internal.efficios.com/lttng/lttng-modules.git" >> properties.txt
28echo "LTTNG_CI_PATH=$LTTNG_CI_PATH" >> properties.txt
29echo "LINUX_PATH=$LINUX_PATH" >> properties.txt
30echo "LTTNG_MODULES_PATH=$LTTNG_MODULES_PATH" >> properties.txt
31
32DEPLOYDIR="$WORKSPACE/deploy"
33MODULES_INSTALL_FOLDER="$DEPLOYDIR/modules"
34
35echo "DEPLOYDIR=$DEPLOYDIR" >> properties.txt
36echo "MODULES_INSTALL_FOLDER=$MODULES_INSTALL_FOLDER" >> properties.txt
37
38BUILD_NAME="$KERNEL_COMMIT_ID-$LTTNG_MODULES_COMMIT_ID"
39
40echo "KERNEL_COMMIT_ID=$KERNEL_COMMIT_ID" >> properties.txt
41echo "LTTNG_MODULES_COMMIT_ID=$LTTNG_MODULES_COMMIT_ID" >> properties.txt
42echo "BUILD_NAME=$BUILD_NAME" >> properties.txt
dc9700c9 43echo "BUILD_DEVICE=$BUILD_DEVICE" >> properties.txt
b3d73c46 44
dc9700c9
FD
45echo "STORAGE_KERNEL_MODULE_SYMVERS=$STORAGE_KERNEL_FOLDER/$KERNEL_COMMIT_ID.$BUILD_DEVICE.symvers" >>properties.txt
46echo "STORAGE_KERNEL_CONFIG=$STORAGE_KERNEL_FOLDER/$KERNEL_COMMIT_ID.$BUILD_DEVICE.config" >> properties.txt
b3d73c46
FD
47
48echo "STORAGE_HOST=storage01.internal.efficios.com" >> properties.txt
49echo "STORAGE_USER=jenkins-lava" >> properties.txt
50
51echo SSH_COMMAND="ssh -oStrictHostKeyChecking=no -i $identity_file" >> properties.txt
52echo SCP_COMMAND="scp -oStrictHostKeyChecking=no -i $identity_file" >> properties.txt
This page took 0.025915 seconds and 4 git commands to generate.