diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-06-14 10:09:22 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-06-14 10:09:56 -0700 |
commit | 6042b9423ca59ed2fe951ea88ba564adf9218074 (patch) | |
tree | 77a3c614218d722256e33fad60369c13ada40e8c /version-manifest/pom.xml | |
parent | 8994d6625b3597fd0b691743faac4d6739ccf38f (diff) |
Add verify job for staging manifest
Change-Id: I857f992069424e74e8b106bf8455280e8111c060
Issue-ID: INT-533
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'version-manifest/pom.xml')
-rw-r--r-- | version-manifest/pom.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/version-manifest/pom.xml b/version-manifest/pom.xml index 2b9722819..4a6291184 100644 --- a/version-manifest/pom.xml +++ b/version-manifest/pom.xml @@ -109,6 +109,19 @@ </configuration> </execution> <execution> + <id>check-docker-manifest-staging-sorted</id> + <phase>validate</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <arguments> + <argument>${project.basedir}/src/main/scripts/check-sorted.sh</argument> + <argument>${project.basedir}/src/main/resources/docker-manifest-staging.csv</argument> + </arguments> + </configuration> + </execution> + <execution> <id>check-java-manifest-sorted</id> <phase>validate</phase> <goals> @@ -134,6 +147,19 @@ </arguments> </configuration> </execution> + <execution> + <id>check-staging-docker-images-exist</id> + <phase>validate</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <arguments> + <argument>${project.basedir}/src/main/scripts/check-docker-manifest-staging.sh</argument> + <argument>${project.basedir}/src/main/resources/docker-manifest-staging.csv</argument> + </arguments> + </configuration> + </execution> </executions> </plugin> </plugins> |