Merge pull request #35 from frdeso/lava_trigger
[lttng-ci.git] / scripts / system-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
b3d73c46
FD
23LINUX_PATH="$WORKSPACE/src/linux"
24LTTNG_MODULES_PATH="$WORKSPACE/src/lttng-modules"
25
70742175 26echo "LTTNG_MODULES_GIT=$LTTNG_MODULES_REPO" >> properties.txt
b3d73c46
FD
27echo "LINUX_PATH=$LINUX_PATH" >> properties.txt
28echo "LTTNG_MODULES_PATH=$LTTNG_MODULES_PATH" >> properties.txt
29
30DEPLOYDIR="$WORKSPACE/deploy"
31MODULES_INSTALL_FOLDER="$DEPLOYDIR/modules"
32
33echo "DEPLOYDIR=$DEPLOYDIR" >> properties.txt
34echo "MODULES_INSTALL_FOLDER=$MODULES_INSTALL_FOLDER" >> properties.txt
35
36BUILD_NAME="$KERNEL_COMMIT_ID-$LTTNG_MODULES_COMMIT_ID"
37
38echo "KERNEL_COMMIT_ID=$KERNEL_COMMIT_ID" >> properties.txt
39echo "LTTNG_MODULES_COMMIT_ID=$LTTNG_MODULES_COMMIT_ID" >> properties.txt
40echo "BUILD_NAME=$BUILD_NAME" >> properties.txt
dc9700c9 41echo "BUILD_DEVICE=$BUILD_DEVICE" >> properties.txt
b3d73c46 42
9fb14641
FD
43echo "STORAGE_KERNEL_MODULE_SYMVERS=$STORAGE_KERNEL_FOLDER/symvers/$KERNEL_COMMIT_ID.$BUILD_DEVICE.symvers" >>properties.txt
44echo "STORAGE_KERNEL_CONFIG=$STORAGE_KERNEL_FOLDER/config/$KERNEL_COMMIT_ID.$BUILD_DEVICE.config" >> properties.txt
b3d73c46 45
55758044 46echo "STORAGE_HOST=storage.internal.efficios.com" >> properties.txt
b3d73c46
FD
47echo "STORAGE_USER=jenkins-lava" >> properties.txt
48
49echo SSH_COMMAND="ssh -oStrictHostKeyChecking=no -i $identity_file" >> properties.txt
50echo SCP_COMMAND="scp -oStrictHostKeyChecking=no -i $identity_file" >> properties.txt
This page took 0.023591 seconds and 4 git commands to generate.