diff options
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index bfe293601..6071a6fa7 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -108,7 +108,7 @@ automation_task: smoke_task: alias: 'smoke' name: "Smoke Test" - skip: *tags + skip: *branches_and_tags container: &bigcontainer image: ${CTR_FQIN} # Leave some resources for smallcontainer @@ -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 |