summaryrefslogtreecommitdiffstats
path: root/jjb/vfc
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/vfc')
-rwxr-xr-xjjb/vfc/build-driver-ems-docker-image.sh11
-rwxr-xr-xjjb/vfc/build-driver-zte-sfc-docker-image.sh11
-rwxr-xr-xjjb/vfc/build-gvnfm-driver-docker-image.sh13
-rwxr-xr-xjjb/vfc/build-gvnfm-vnflcm-docker-image.sh4
-rwxr-xr-xjjb/vfc/build-gvnfm-vnfmgr-docker-image.sh11
-rwxr-xr-xjjb/vfc/build-gvnfm-vnfres-docker-image.sh11
-rwxr-xr-xjjb/vfc/build-nfvo-catalog-docker-image.sh11
-rwxr-xr-xjjb/vfc/build-nfvo-resmanagement-docker-image.sh11
-rwxr-xr-xjjb/vfc/build-nfvo-svnfm-driver-docker-image.sh12
-rw-r--r--jjb/vfc/vfc-gvnfm-vnflcm-csit.yaml (renamed from jjb/vfc/vfc-nfvo-driver-svnfm-huawei-csit.yaml)7
-rw-r--r--jjb/vfc/vfc-gvnfm-vnflcm-java.yaml2
-rw-r--r--jjb/vfc/vfc-gvnfm-vnfmgr-csit.yaml14
-rw-r--r--jjb/vfc/vfc-gvnfm-vnfmgr-java.yaml5
-rw-r--r--jjb/vfc/vfc-gvnfm-vnfres-csit.yaml14
-rw-r--r--jjb/vfc/vfc-gvnfm-vnfres-java.yaml5
-rw-r--r--jjb/vfc/vfc-nfvo-catalog-csit.yaml14
-rw-r--r--jjb/vfc/vfc-nfvo-catalog.yaml5
-rw-r--r--jjb/vfc/vfc-nfvo-driver-ems-csit.yaml14
-rw-r--r--jjb/vfc/vfc-nfvo-driver-ems-java.yaml5
-rw-r--r--jjb/vfc/vfc-nfvo-driver-sfc-csit.yaml14
-rw-r--r--jjb/vfc/vfc-nfvo-driver-sfc.yaml5
-rw-r--r--jjb/vfc/vfc-nfvo-driver-svnfm-huawei.yaml1
-rw-r--r--jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-csit.yaml14
-rw-r--r--jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-java.yaml6
-rw-r--r--jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-csit.yaml14
-rw-r--r--jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-docker-java.yaml19
-rw-r--r--jjb/vfc/vfc-nfvo-lcm-csit.yaml14
-rw-r--r--jjb/vfc/vfc-nfvo-resmanagement.yaml9
28 files changed, 263 insertions, 13 deletions
diff --git a/jjb/vfc/build-driver-ems-docker-image.sh b/jjb/vfc/build-driver-ems-docker-image.sh
new file mode 100755
index 000000000..6804198b5
--- /dev/null
+++ b/jjb/vfc/build-driver-ems-docker-image.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./ems/microservice-standalone/src/main/assembly/docker/*.*
+
+./ems/microservice-standalone/src/main/assembly/docker/build_image.sh
+
diff --git a/jjb/vfc/build-driver-zte-sfc-docker-image.sh b/jjb/vfc/build-driver-zte-sfc-docker-image.sh
new file mode 100755
index 000000000..8435ae139
--- /dev/null
+++ b/jjb/vfc/build-driver-zte-sfc-docker-image.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./zte/sfc-driver/plugin-standalone/src/main/assembly/docker/*.*
+
+./zte/sfc-driver/plugin-standalone/src/main/assembly/docker/build_image.sh
+
diff --git a/jjb/vfc/build-gvnfm-driver-docker-image.sh b/jjb/vfc/build-gvnfm-driver-docker-image.sh
new file mode 100755
index 000000000..ac6b90781
--- /dev/null
+++ b/jjb/vfc/build-gvnfm-driver-docker-image.sh
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./gvnfmadapter/docker/*.*
+./gvnfmadapter/docker/build_image.sh
+
+chmod 755 ./juju/juju-vnfmadapter/Juju-vnfmadapterService/docker/*.*
+./juju/juju-vnfmadapter/Juju-vnfmadapterService/docker/build_image.sh
+
diff --git a/jjb/vfc/build-gvnfm-vnflcm-docker-image.sh b/jjb/vfc/build-gvnfm-vnflcm-docker-image.sh
index d570d18a2..e4c743092 100755
--- a/jjb/vfc/build-gvnfm-vnflcm-docker-image.sh
+++ b/jjb/vfc/build-gvnfm-vnflcm-docker-image.sh
@@ -5,7 +5,7 @@ echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
CURRENTDIR="$(pwd)"
echo $CURRENTDIR
-chmod 755 ./docker/*.*
+chmod 755 ./lcm/docker/*.*
-./docker/build_image.sh
+./lcm/docker/build_image.sh
diff --git a/jjb/vfc/build-gvnfm-vnfmgr-docker-image.sh b/jjb/vfc/build-gvnfm-vnfmgr-docker-image.sh
new file mode 100755
index 000000000..b16fa2deb
--- /dev/null
+++ b/jjb/vfc/build-gvnfm-vnfmgr-docker-image.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./mgr/docker/*.*
+
+./mgr/docker/build_image.sh
+
diff --git a/jjb/vfc/build-gvnfm-vnfres-docker-image.sh b/jjb/vfc/build-gvnfm-vnfres-docker-image.sh
new file mode 100755
index 000000000..dbfd2caaf
--- /dev/null
+++ b/jjb/vfc/build-gvnfm-vnfres-docker-image.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./res/docker/*.*
+
+./res/docker/build_image.sh
+
diff --git a/jjb/vfc/build-nfvo-catalog-docker-image.sh b/jjb/vfc/build-nfvo-catalog-docker-image.sh
new file mode 100755
index 000000000..d570d18a2
--- /dev/null
+++ b/jjb/vfc/build-nfvo-catalog-docker-image.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./docker/*.*
+
+./docker/build_image.sh
+
diff --git a/jjb/vfc/build-nfvo-resmanagement-docker-image.sh b/jjb/vfc/build-nfvo-resmanagement-docker-image.sh
new file mode 100755
index 000000000..539ea3e52
--- /dev/null
+++ b/jjb/vfc/build-nfvo-resmanagement-docker-image.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./ResmanagementService/docker/*.*
+
+./ResmanagementService/docker/build_image.sh
+
diff --git a/jjb/vfc/build-nfvo-svnfm-driver-docker-image.sh b/jjb/vfc/build-nfvo-svnfm-driver-docker-image.sh
new file mode 100755
index 000000000..89860d94c
--- /dev/null
+++ b/jjb/vfc/build-nfvo-svnfm-driver-docker-image.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+#
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+chmod 755 ./zte/vmanager/docker/*.*
+./zte/vmanager/docker/build_image.sh
+
+chmod 755 ./huawei/vnfmadapter/VnfmadapterService/docker/*.*
+./huawei/vnfmadapter/VnfmadapterService/docker/build_image.sh
diff --git a/jjb/vfc/vfc-nfvo-driver-svnfm-huawei-csit.yaml b/jjb/vfc/vfc-gvnfm-vnflcm-csit.yaml
index 23243c299..7280f735e 100644
--- a/jjb/vfc/vfc-nfvo-driver-svnfm-huawei-csit.yaml
+++ b/jjb/vfc/vfc-gvnfm-vnflcm-csit.yaml
@@ -1,15 +1,14 @@
---
-
- project:
- name: vfc-nfvo-driver-svnfm-huawei-csit
+ name: vfc-gvnfm-vnflcm-csit
jobs:
- '{project-name}-{stream}-verify-csit-{functionality}'
- '{project-name}-{stream}-csit-{functionality}'
- project-name: 'vfc-nfvo-driver-svnfm'
+ project-name: 'vfc-gvnfm-vnflcm'
stream: 'master'
functionality:
- 'sanity-check':
trigger_jobs:
- - 'vfc-nfvo-driver-svnfm-huawei-master-docker-version-java-daily'
+ - 'vfc-gvnfm-vnflcm-master-docker-java-version-shell-daily'
robot-options: ''
branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-gvnfm-vnflcm-java.yaml b/jjb/vfc/vfc-gvnfm-vnflcm-java.yaml
index e751d4855..36d702479 100644
--- a/jjb/vfc/vfc-gvnfm-vnflcm-java.yaml
+++ b/jjb/vfc/vfc-gvnfm-vnflcm-java.yaml
@@ -16,7 +16,7 @@
- '{project-name}-{stream}-{subproject}-verify-java'
- '{project-name}-{stream}-{subproject}-merge-java'
- '{project-name}-{stream}-docker-java-version-shell-daily':
- docker-pom: 'lcm/pom.xml'
+ docker-pom: 'pom.xml'
mvn-goals: 'install'
script:
!include-raw-escape: 'build-gvnfm-vnflcm-docker-image.sh'
diff --git a/jjb/vfc/vfc-gvnfm-vnfmgr-csit.yaml b/jjb/vfc/vfc-gvnfm-vnfmgr-csit.yaml
new file mode 100644
index 000000000..f8436a65a
--- /dev/null
+++ b/jjb/vfc/vfc-gvnfm-vnfmgr-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-gvnfm-vnfmgr-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-gvnfm-vnfmgr'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-gvnfm-vnfmgr-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-gvnfm-vnfmgr-java.yaml b/jjb/vfc/vfc-gvnfm-vnfmgr-java.yaml
index 5fec8ccd4..05c01dd85 100644
--- a/jjb/vfc/vfc-gvnfm-vnfmgr-java.yaml
+++ b/jjb/vfc/vfc-gvnfm-vnfmgr-java.yaml
@@ -14,6 +14,11 @@
jobs:
- '{project-name}-{stream}-{subproject}-verify-java'
- '{project-name}-{stream}-{subproject}-merge-java'
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
+ docker-pom: 'pom.xml'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-gvnfm-vnfmgr-docker-image.sh'
files: '**'
archive-artifacts: ''
build-node: ubuntu1604-basebuild-4c-4g \ No newline at end of file
diff --git a/jjb/vfc/vfc-gvnfm-vnfres-csit.yaml b/jjb/vfc/vfc-gvnfm-vnfres-csit.yaml
new file mode 100644
index 000000000..afb3ccd3d
--- /dev/null
+++ b/jjb/vfc/vfc-gvnfm-vnfres-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-gvnfm-vnfres-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-gvnfm-vnfres'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-gvnfm-vnfres-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-gvnfm-vnfres-java.yaml b/jjb/vfc/vfc-gvnfm-vnfres-java.yaml
index da8460d62..02c95959a 100644
--- a/jjb/vfc/vfc-gvnfm-vnfres-java.yaml
+++ b/jjb/vfc/vfc-gvnfm-vnfres-java.yaml
@@ -15,6 +15,11 @@
jobs:
- '{project-name}-{stream}-{subproject}-verify-java'
- '{project-name}-{stream}-{subproject}-merge-java'
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
+ docker-pom: 'pom.xml'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-gvnfm-vnfres-docker-image.sh'
files: '**'
archive-artifacts: ''
build-node: ubuntu1604-basebuild-4c-4g \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-catalog-csit.yaml b/jjb/vfc/vfc-nfvo-catalog-csit.yaml
new file mode 100644
index 000000000..8a4269cb7
--- /dev/null
+++ b/jjb/vfc/vfc-nfvo-catalog-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-nfvo-catalog-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-nfvo-catalog'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-nfvo-catalog-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-catalog.yaml b/jjb/vfc/vfc-nfvo-catalog.yaml
index 2856dd649..208e89ccb 100644
--- a/jjb/vfc/vfc-nfvo-catalog.yaml
+++ b/jjb/vfc/vfc-nfvo-catalog.yaml
@@ -16,6 +16,11 @@
- '{project-name}-{stream}-{subproject}-verify-python'
- '{project-name}-{stream}-verify-java'
- '{project-name}-{stream}-merge-java'
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
+ docker-pom: 'pom.xml'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-nfvo-catalog-docker-image.sh'
files: '**'
archive-artifacts: ''
build-node: centos7-redis-4c-4g \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-driver-ems-csit.yaml b/jjb/vfc/vfc-nfvo-driver-ems-csit.yaml
new file mode 100644
index 000000000..312528866
--- /dev/null
+++ b/jjb/vfc/vfc-nfvo-driver-ems-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-nfvo-driver-ems-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-nfvo-driver-ems'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-nfvo-driver-ems-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-driver-ems-java.yaml b/jjb/vfc/vfc-nfvo-driver-ems-java.yaml
index ef5518732..7da4da9c8 100644
--- a/jjb/vfc/vfc-nfvo-driver-ems-java.yaml
+++ b/jjb/vfc/vfc-nfvo-driver-ems-java.yaml
@@ -16,6 +16,11 @@
- '{project-name}-{stream}-{subproject}-verify-java'
- '{project-name}-{stream}-{subproject}-merge-java'
- '{project-name}-{stream}-{subproject}-release-java-daily'
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
+ docker-pom: 'pom.xml'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-driver-ems-docker-image.sh'
files: '**'
archive-artifacts: ''
build-node: ubuntu1604-basebuild-4c-4g \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-driver-sfc-csit.yaml b/jjb/vfc/vfc-nfvo-driver-sfc-csit.yaml
new file mode 100644
index 000000000..f433b0639
--- /dev/null
+++ b/jjb/vfc/vfc-nfvo-driver-sfc-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-nfvo-driver-sfc-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-nfvo-driver-sfc'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-nfvo-driver-sfc-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-driver-sfc.yaml b/jjb/vfc/vfc-nfvo-driver-sfc.yaml
index 47634ac7c..9fef201ac 100644
--- a/jjb/vfc/vfc-nfvo-driver-sfc.yaml
+++ b/jjb/vfc/vfc-nfvo-driver-sfc.yaml
@@ -15,6 +15,11 @@
- '{project-name}-{stream}-{subproject}-verify-java'
- '{project-name}-{stream}-{subproject}-merge-java'
- '{project-name}-{stream}-{subproject}-release-java-daily'
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
+ docker-pom: 'pom.xml'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-driver-zte-sfc-docker-image.sh'
files: '**'
archive-artifacts: ''
build-node: ubuntu1604-basebuild-4c-4g
diff --git a/jjb/vfc/vfc-nfvo-driver-svnfm-huawei.yaml b/jjb/vfc/vfc-nfvo-driver-svnfm-huawei.yaml
index 7fa3c2538..db40e10c8 100644
--- a/jjb/vfc/vfc-nfvo-driver-svnfm-huawei.yaml
+++ b/jjb/vfc/vfc-nfvo-driver-svnfm-huawei.yaml
@@ -14,6 +14,7 @@
jobs:
- '{project-name}-{stream}-{subproject}-verify-java'
- '{project-name}-{stream}-{subproject}-merge-java'
+ - '{project-name}-{stream}-{subproject}-release-java-daily'
files: '**'
archive-artifacts: ''
build-node: ubuntu1604-basebuild-4c-4g
diff --git a/jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-csit.yaml b/jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-csit.yaml
new file mode 100644
index 000000000..3edde732b
--- /dev/null
+++ b/jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-nfvo-driver-vnfm-gvnfm-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-nfvo-driver-vnfm-gvnfm'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-nfvo-driver-vnfm-gvnfm-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-java.yaml b/jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-java.yaml
index 0d57efa2d..5dbd4fe8d 100644
--- a/jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-java.yaml
+++ b/jjb/vfc/vfc-nfvo-driver-vnfm-gvnfm-java.yaml
@@ -15,9 +15,11 @@
jobs:
- '{project-name}-{stream}-{subproject}-verify-java'
- '{project-name}-{stream}-{subproject}-merge-java'
- - '{project-name}-{stream}-docker-version-java-daily':
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
docker-pom: 'pom.xml'
- mvn-profile: 'docker'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-gvnfm-driver-docker-image.sh'
files: '**'
archive-artifacts: ''
build-node: ubuntu1604-basebuild-4c-4g \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-csit.yaml b/jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-csit.yaml
new file mode 100644
index 000000000..d97117683
--- /dev/null
+++ b/jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-nfvo-driver-vnfm-svnfm-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-nfvo-driver-vnfm-svnfm'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-nfvo-driver-vnfm-svnfm-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-docker-java.yaml b/jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-docker-java.yaml
new file mode 100644
index 000000000..8698735ff
--- /dev/null
+++ b/jjb/vfc/vfc-nfvo-driver-vnfm-svnfm-docker-java.yaml
@@ -0,0 +1,19 @@
+---
+
+- project:
+ name: vfc-nfvo-driver-vnfm-svnfm-docker
+ project-name: 'vfc-nfvo-driver-vnfm-svnfm'
+ project: 'vfc/nfvo/driver/vnfm/svnfm'
+ stream:
+ - 'master':
+ branch: 'master'
+ mvn-settings: 'vfc-nfvo-driver-vnfm-svnfm-settings'
+ jobs:
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
+ docker-pom: 'pom.xml'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-nfvo-svnfm-driver-docker-image.sh'
+ files: '**'
+ archive-artifacts: ''
+ build-node: ubuntu1604-basebuild-4c-4g \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-lcm-csit.yaml b/jjb/vfc/vfc-nfvo-lcm-csit.yaml
new file mode 100644
index 000000000..f5ad31137
--- /dev/null
+++ b/jjb/vfc/vfc-nfvo-lcm-csit.yaml
@@ -0,0 +1,14 @@
+---
+- project:
+ name: vfc-nfvo-lcm-csit
+ jobs:
+ - '{project-name}-{stream}-verify-csit-{functionality}'
+ - '{project-name}-{stream}-csit-{functionality}'
+ project-name: 'vfc-nfvo-lcm'
+ stream: 'master'
+ functionality:
+ - 'sanity-check':
+ trigger_jobs:
+ - 'vfc-nfvo-lcm-master-docker-java-version-shell-daily'
+ robot-options: ''
+ branch: 'master' \ No newline at end of file
diff --git a/jjb/vfc/vfc-nfvo-resmanagement.yaml b/jjb/vfc/vfc-nfvo-resmanagement.yaml
index 2bf363c3c..ecab6e123 100644
--- a/jjb/vfc/vfc-nfvo-resmanagement.yaml
+++ b/jjb/vfc/vfc-nfvo-resmanagement.yaml
@@ -8,12 +8,13 @@
stream:
- 'master':
branch: 'master'
- - 'release-1.0.0':
- branch: 'release-1.0.0'
build-node: ubuntu1604-basebuild-4c-4g
jobs:
- '{project-name}-{stream}-verify-java'
- '{project-name}-{stream}-merge-java'
- - '{project-name}-{stream}-docker-version-java-daily':
+ - '{project-name}-{stream}-release-java-daily'
+ - '{project-name}-{stream}-docker-java-version-shell-daily':
docker-pom: 'pom.xml'
- mvn-profile: 'docker'
+ mvn-goals: 'install'
+ script:
+ !include-raw-escape: 'build-nfvo-resmanagement-docker-image.sh'