prepare for jenkins test
[nonrtric.git] / test / jenkins / run_test.sh
diff --git a/test/jenkins/run_test.sh b/test/jenkins/run_test.sh
new file mode 100755 (executable)
index 0000000..469288d
--- /dev/null
@@ -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