diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-20 10:49:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 10:49:20 -0500 |
commit | d6711a2929576bcda41e6b07a12fa309db56ba5d (patch) | |
tree | b46d046e20257b5870352f85c0bf29c68e90835b /.cirrus.yml | |
parent | 7d024a2fc8c675e4d34e3b34b56b6217a48ef9ce (diff) | |
parent | a3621a7cff27a77a53031cd58b2015a0f178101b (diff) | |
download | podman-d6711a2929576bcda41e6b07a12fa309db56ba5d.tar.gz podman-d6711a2929576bcda41e6b07a12fa309db56ba5d.tar.bz2 podman-d6711a2929576bcda41e6b07a12fa309db56ba5d.zip |
Merge pull request #9020 from vrothberg/fix-9000
make bindings generation more robust
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index bfe293601..2aa751f9f 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -274,17 +274,19 @@ swagger_task: # Check that all included go modules from other sources match -# what is expected in `vendor/modules.txt` vs `go.mod`. -vendor_task: - name: "Test Vendoring" - alias: vendor +# what is expected in `vendor/modules.txt` vs `go.mod`. Also +# make sure that the generated bindings in pkg/bindings/... +# are in sync with the code. +consistency_task: + name: "Test Code Consistency" + alias: consistency skip: *tags depends_on: - build container: *smallcontainer env: <<: *stdenvars - TEST_FLAVOR: vendor + TEST_FLAVOR: consistency TEST_ENVIRON: container CTR_FQIN: ${FEDORA_CONTAINER_FQIN} clone_script: *full_clone # build-cache not available to container tasks @@ -642,7 +644,7 @@ success_task: - validate - bindings - swagger - - vendor + - consistency - alt_build - static_alt_build - osx_alt_build |