aboutsummaryrefslogtreecommitdiffstats
path: root/version-manifest/pom.xml
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-05-03 17:06:06 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-05-03 19:29:42 -0700
commit7f114f5e27b5565fb3923eff9ad1bd6955ce1844 (patch)
treec0d74cf998f5569f64f09e0dc7b1d007a64b01a0 /version-manifest/pom.xml
parentc41cad9bcb624f8ea42f63e917d6155e7db18129 (diff)
Verify that docker manifest images exist in nexus3
Add enforcement check to ensure that all docker images specified in the manifest can actually be found on nexus3. Change-Id: I49ebc60a50cbb9f36f6e06d2d69c39cfeeacfcde Issue-ID: INT-488 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'version-manifest/pom.xml')
-rw-r--r--version-manifest/pom.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/version-manifest/pom.xml b/version-manifest/pom.xml
index b2102d5dc..22634cb31 100644
--- a/version-manifest/pom.xml
+++ b/version-manifest/pom.xml
@@ -121,6 +121,19 @@
</arguments>
</configuration>
</execution>
+ <execution>
+ <id>check-docker-images-exist</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <arguments>
+ <argument>${project.basedir}/src/main/scripts/check-docker-manifest.sh</argument>
+ <argument>${project.basedir}/src/main/resources/docker-manifest.csv</argument>
+ </arguments>
+ </configuration>
+ </execution>
</executions>
</plugin>
</plugins>