CI: restore the consistency check

This is a partial revert of commit 47b995b10.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2024-03-06 18:26:09 -08:00
parent 1135947b28
commit 910bf6bfbe

View File

@ -295,28 +295,27 @@ swagger_task:
type: text/plain type: text/plain
# Disabled as we are now manually patching vendor/ # Check that all included go modules from other sources match
# # Check that all included go modules from other sources match # what is expected in `vendor/modules.txt` vs `go.mod`. Also
# # what is expected in `vendor/modules.txt` vs `go.mod`. Also # make sure that the generated bindings in pkg/bindings/...
# # make sure that the generated bindings in pkg/bindings/... # are in sync with the code.
# # are in sync with the code. consistency_task:
# consistency_task: name: "Test Code Consistency"
# name: "Test Code Consistency" alias: consistency
# alias: consistency # Docs: ./contrib/cirrus/CIModes.md
# # Docs: ./contrib/cirrus/CIModes.md only_if: *is_pr
# only_if: *is_pr depends_on:
# depends_on: - build
# - build container: *smallcontainer
# container: *smallcontainer env:
# env: <<: *stdenvars
# <<: *stdenvars TEST_FLAVOR: consistency
# TEST_FLAVOR: consistency TEST_ENVIRON: container
# TEST_ENVIRON: container CTR_FQIN: ${FEDORA_CONTAINER_FQIN}
# CTR_FQIN: ${FEDORA_CONTAINER_FQIN} clone_script: *get_gosrc
# clone_script: *get_gosrc setup_script: *setup
# setup_script: *setup main_script: *main
# main_script: *main always: *runner_stats
# always: *runner_stats
# There are several other important variations of podman which # There are several other important variations of podman which
@ -803,6 +802,7 @@ success_task:
- validate - validate
- bindings - bindings
- swagger - swagger
- consistency
- alt_build - alt_build
- osx_alt_build - osx_alt_build
- unit_test - unit_test