LAVA: Upload results to obj.internal.efficios.com
[lttng-ci.git] / scripts / system-tests / run-baremetal-benchmarks.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
17echo 'At this point, we built the modules and kernel if we needed to.'
18echo 'We can now launch the lava job using those artefacts'
ceac45b0
JR
19
20venv=$(mktemp -d)
21virtualenv -p python3 "$venv"
62a96d01 22set +eu
ceac45b0 23source "${venv}/bin/activate"
62a96d01 24set -eu
1cc09995 25pip install pyyaml Jinja2
ceac45b0 26
ceac45b0 27python -u "$LTTNG_CI_PATH"/scripts/system-tests/lava2-submit.py \
5f662858
JR
28 -t baremetal-benchmarks \
29 -j "$JOB_NAME" \
30 -k "$S3_URL_KERNEL_IMAGE" \
5f662858 31 -lm "$S3_URL_LTTNG_MODULES" \
fb255fc5 32 -tc "$LTTNG_TOOLS_COMMIT_ID" \
6b35e57c 33 -id "$BUILD_TAG" \
fb255fc5 34 --debug
c29cba19
JR
35
36python -u "$LTTNG_CI_PATH"/scripts/system-tests/lava-submit.py \
37 -t baremetal-benchmarks \
38 -j "$JOB_NAME" \
39 -k "$STORAGE_KERNEL_IMAGE" \
c29cba19
JR
40 -lm "$STORAGE_LTTNG_MODULES" \
41 -tc "$LTTNG_TOOLS_COMMIT_ID"
42
62a96d01 43set +eu
ceac45b0 44deactivate
62a96d01 45set -eu
ceac45b0 46rm -rf "$venv"
5f662858 47
b32d6f9c
FD
48# Create a results folder for this job
49RESULT_STORAGE_FOLDER="$BASE_STORAGE_FOLDER/benchmark-results/$JOB_NAME/$BUILD_NUMBER"
50$SSH_COMMAND "$STORAGE_USER@$STORAGE_HOST" mkdir -p "$RESULT_STORAGE_FOLDER"
51
990b2bbd
FD
52# Create a metadata file for this job containing the build_id, timestamp and the commit ids
53TIMESTAMP=$(/bin/date --iso-8601=seconds)
54LTTNG_CI_COMMIT_ID="$(git --git-dir="$LTTNG_CI_PATH"/.git/ --work-tree="$LTTNG_CI_PATH" rev-parse --short HEAD)"
55
56echo "build_id,timestamp,kernel_commit,modules_commit,tools_commit,ci_commit" > metadata.csv
57echo "$BUILD_NUMBER,$TIMESTAMP,$KERNEL_COMMIT_ID,$LTTNG_MODULES_COMMIT_ID,$LTTNG_TOOLS_COMMIT_ID,$LTTNG_CI_COMMIT_ID" >> metadata.csv
b32d6f9c
FD
58
59# Copy the result files for each benchmark and metadata on storage server
60$SCP_COMMAND ./processed_results_close.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/close.csv"
c863d7ca 61$SCP_COMMAND ./processed_results_ioctl.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/ioctl.csv"
b32d6f9c 62$SCP_COMMAND ./processed_results_open_efault.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/open-efault.csv"
6ebb7306 63$SCP_COMMAND ./processed_results_open_enoent.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/open-enoent.csv"
70e85c98 64$SCP_COMMAND ./processed_results_dup_close.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/dup-close.csv"
dff1609b 65$SCP_COMMAND ./processed_results_lttng_test_filter.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/lttng-test-filter.csv"
0ca122b6 66$SCP_COMMAND ./processed_results_raw_syscall_getpid.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/raw_syscall_getpid.csv"
b32d6f9c 67$SCP_COMMAND ./metadata.csv "$STORAGE_USER@$STORAGE_HOST:$RESULT_STORAGE_FOLDER/metadata.csv"
This page took 0.036623 seconds and 4 git commands to generate.