X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fjenkins%2Frun_test.sh;fp=test%2Fjenkins%2Frun_test.sh;h=469288d6174bae23ac94d2ea3b58d5b3523f9125;hb=f40c3b6d38ddb3532897dff991662b4b7d1d66b6;hp=0000000000000000000000000000000000000000;hpb=617cfb13a286bfd1b6da5329c150fca69f148bc4;p=nonrtric.git diff --git a/test/jenkins/run_test.sh b/test/jenkins/run_test.sh new file mode 100755 index 00000000..469288d6 --- /dev/null +++ b/test/jenkins/run_test.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +# ============LICENSE_START=============================================== +# Copyright (C) 2020 Nordix Foundation. All rights reserved. +# ======================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END================================================= +# + +# This script is to set up test env in jenkins vm + +echo "--> run_integration.sh" + +# Install docker-compose +curl -L "https://github.com/docker/compose/releases/download/1.26.0/docker-compose-$(uname -s)-$(uname -m)" -o ./docker-compose +chmod +x docker-compose +export PATH=$PATH:`pwd` + +# Run auto-test scripts +cd ../auto-test/ +bash FTC10.sh remote auto-clean --use-local-image PA SDNC + +echo "--> run_integration.sh END" + +FILE=.resultFTC10.txt +if [[ -f "$FILE" ]]; then + res=$(cat .resultFTC10.txt) + docker system prune -f + exit $res +fi +docker system prune -f +exit 1