summaryrefslogtreecommitdiffstats
path: root/jjb/fuel/fuel-basic-exp.sh
diff options
context:
space:
mode:
authorFatih Degirmenci <fatih.degirmenci@ericsson.com>2017-03-02 17:01:24 +0100
committerFatih Degirmenci <fatih.degirmenci@ericsson.com>2017-03-02 16:25:10 +0000
commit2093734a5e12c8b64f174b6f7271c8e9aaf1e882 (patch)
tree8d731eeedea5af064a1efa1c056c3b7959cf8e05 /jjb/fuel/fuel-basic-exp.sh
parentf2ee1d5e8d258da2c2ffdf8bf33f0a8f9fd8dcb0 (diff)
functest: Create functest-weekly prototype jobs
Fuel weekly jobs are created, calling fuel-deploy and functest weekly jobs. Experimental scripts have also been removed. Change-Id: If492443e26248731df35e6b6cb5239fb2ae9a86a Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb/fuel/fuel-basic-exp.sh')
-rwxr-xr-xjjb/fuel/fuel-basic-exp.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/jjb/fuel/fuel-basic-exp.sh b/jjb/fuel/fuel-basic-exp.sh
deleted file mode 100755
index a70a0c765..000000000
--- a/jjb/fuel/fuel-basic-exp.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-set -o nounset
-
-echo "-----------------------------------------------------------------------"
-echo $GERRIT_CHANGE_COMMIT_MESSAGE
-echo "-----------------------------------------------------------------------"
-
-# proposal for specifying the scenario name in commit message
-# currently only 1 scenario name is supported but depending on
-# the need, it can be expanded, supporting multiple scenarios
-# using comma separated list or something
-SCENARIO_NAME_PATTERN="(?<=@scenario:).*?(?=@)"
-SCENARIO_NAME=(echo $GERRIT_CHANGE_COMMIT_MESSAGE | grep -oP "$SCENARIO_NAME_PATTERN")
-if [[ $? -ne 0 ]]; then
- echo "The patch verification will be done only with build!"
-else
- echo "Will run full verification; build, deploy, and smoke test using scenario $SCENARIO_NAME"
-fi