Update canary job base to use 2.10.x and latest kernel 4.4.x
[lttng-ci.git] / scripts / system-tests / generate-properties-master.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 LTTNG_CI_PATH="$WORKSPACE/src/lttng-ci"
33 echo "LTTNG_CI_PATH=$LTTNG_CI_PATH" >> properties.txt
34 KERNEL_COMMIT_ID=$KERNEL_TAG_ID
35
36 echo "KERNEL_COMMIT_ID=$KERNEL_COMMIT_ID" >> properties.txt
37 echo "LTTNG_MODULES_COMMIT_ID=$LTTNG_MODULES_COMMIT_ID" >> properties.txt
38 echo "LTTNG_TOOLS_COMMIT_ID=$LTTNG_TOOLS_COMMIT_ID" >> properties.txt
39 echo "LTTNG_UST_COMMIT_ID=$LTTNG_UST_COMMIT_ID" >> properties.txt
40
41 BASE_STORAGE_FOLDER="/storage/jenkins-lava/baremetal-tests"
42
43 echo "BASE_STORAGE_FOLDER=$BASE_STORAGE_FOLDER" >> properties.txt
44 echo "STORAGE_HOST=storage.internal.efficios.com" >> properties.txt
45 echo "STORAGE_USER=jenkins-lava" >> properties.txt
46
47 echo "BUILD_DEVICE=$BUILD_DEVICE" >> properties.txt
48 echo "KGITREPO=$KERNEL_REPO" >> properties.txt
49 echo "STORAGE_KERNEL_FOLDER=$BASE_STORAGE_FOLDER/kernel" >> properties.txt
50 echo "STORAGE_KERNEL_IMAGE=$BASE_STORAGE_FOLDER/kernel/$KERNEL_COMMIT_ID.$BUILD_DEVICE.bzImage" >> properties.txt
51 echo "STORAGE_LINUX_MODULES=$BASE_STORAGE_FOLDER/modules/linux/$KERNEL_COMMIT_ID.$BUILD_DEVICE.linux.modules.tar.gz" >> properties.txt
52 echo "STORAGE_LTTNG_MODULES=$BASE_STORAGE_FOLDER/modules/lttng/$KERNEL_COMMIT_ID-$LTTNG_MODULES_COMMIT_ID.$BUILD_DEVICE.lttng.modules.tar.gz" >> properties.txt
53
54 BASE_S3_STORAGE="lava"
55 BASE_S3_URL="https://obj.internal.efficios.com"
56
57 S3_STORAGE_KERNEL_IMAGE=$BASE_S3_STORAGE/kernel/$KERNEL_COMMIT_ID.$BUILD_DEVICE.bzImage
58 S3_STORAGE_LINUX_MODULES=$BASE_S3_STORAGE/modules/linux/$KERNEL_COMMIT_ID.$BUILD_DEVICE.linux.modules.tar.gz
59 S3_STORAGE_LTTNG_MODULES=$BASE_S3_STORAGE/modules/lttng/$KERNEL_COMMIT_ID-$LTTNG_MODULES_COMMIT_ID.$BUILD_DEVICE.lttng.modules.tar.gz
60
61 echo "BASE_S3_STORAGE=$BASE_S3_STORAGE" >> properties.txt
62 echo "S3_STORAGE_KERNEL_FOLDER=$BASE_S3_STORAGE/kernel/" >> properties.txt
63 echo "S3_STORAGE_KERNEL_IMAGE=$S3_STORAGE_KERNEL_IMAGE" >> properties.txt
64 echo "S3_STORAGE_LINUX_MODULES=$S3_STORAGE_LINUX_MODULES" >> properties.txt
65 echo "S3_STORAGE_LTTNG_MODULES=$S3_STORAGE_LTTNG_MODULES" >> properties.txt
66
67 # Generate S3 https url directly
68 echo "S3_URL_KERNEL_IMAGE=${BASE_S3_URL}/$S3_STORAGE_KERNEL_IMAGE" >> properties.txt
69 echo "S3_URL_LINUX_MODULES=${BASE_S3_URL}/$S3_STORAGE_LINUX_MODULES" >> properties.txt
70 echo "S3_URL_LTTNG_MODULES=${BASE_S3_URL}/$S3_STORAGE_LTTNG_MODULES" >> properties.txt
This page took 0.031732 seconds and 4 git commands to generate.