mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Information about sourceBranch and sourceCommit is already encoded in the testBranch name, making it redundant in the HTML header. Also remove the Job Trigger and Target Branch lines, as these parameters provide limited value and are not particularly relevant for the report. Signed-off-by: Jaroslava Fiedlerova <jaroslava.fiedlerova@openairinterface.org>
46 lines
1.4 KiB
Bash
Executable File
46 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
SHORT_COMMIT_SHA=$(git rev-parse --short=8 HEAD)
|
|
COMMIT_SHA=$(git rev-parse HEAD)
|
|
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
REPO_PATH=$(dirname $(realpath $0))/../
|
|
TESTCASE=$1
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "Provide a testcase as an argument"
|
|
exit 1
|
|
fi
|
|
|
|
set -x
|
|
|
|
# The script assumes you've build the following images:
|
|
#
|
|
# docker build . -f docker/Dockerfile.gNB.ubuntu -t oai-gnb
|
|
# docker build . -f docker/Dockerfile.nr-cuup.ubuntu -t oai-nr-cuup
|
|
# docker build . -f docker/Dockerfile.nrUE.ubuntu -t oai-nr-ue
|
|
#
|
|
# The images above depend on the following images:
|
|
#
|
|
# docker build . -f docker/Dockerfile.build.ubuntu -t ran-build
|
|
# docker build . -f docker/Dockerfile.base.ubuntu -t ran-base
|
|
|
|
docker tag oai-nr-ue oai-ci/oai-nr-ue:develop-${SHORT_COMMIT_SHA}
|
|
docker tag oai-gnb oai-ci/oai-gnb:develop-${SHORT_COMMIT_SHA}
|
|
docker tag oai-nr-cuup oai-ci/oai-nr-cuup:develop-${SHORT_COMMIT_SHA}
|
|
|
|
python3 main.py --mode=InitiateHtml --repository=NONE --branch=${CURRENT_BRANCH} \
|
|
--XMLTestFile=xml_files/${TESTCASE} --local --datefmt="%H:%M:%S"
|
|
|
|
python3 main.py --mode=TesteNB --repository=NONE --branch=${CURRENT_BRANCH} \
|
|
--ranAllowMerge=false \
|
|
--targetBranch=NONE \
|
|
--workspace=${REPO_PATH} \
|
|
--XMLTestFile=${TESTCASE} --local --datefmt="%H:%M:%S"
|
|
RET=$?
|
|
|
|
python3 main.py --mode=FinalizeHtml --local --datefmt="%H:%M:%S"
|
|
|
|
exit ${RET}
|