ci: run static generators as part of CI

These are used by release process, so add them to CI to notice if we
break release scripts.
This commit is contained in:
Mahmood Ali
2020-06-04 18:15:52 -04:00
parent 192b7e8fdd
commit 723ed85f44
2 changed files with 3 additions and 0 deletions

2
.circleci/config.yml generated
View File

@@ -752,6 +752,8 @@ jobs:
command: make check
- run:
command: make checkscripts
- run:
command: mkdir -p ui/dist && make generate-all static-assets
- run:
command: make -C .circleci CIRCLECI="circleci-local-cli --skip-update-check" ci-verify
name: check .circleci/config.yml is up-to-date

View File

@@ -7,6 +7,7 @@ steps:
- run: make deps lint-deps
- run: make check
- run: make checkscripts
- run: mkdir -p ui/dist && make generate-all static-assets
- run:
name: check .circleci/config.yml is up-to-date
command: make -C .circleci CIRCLECI="circleci-local-cli --skip-update-check" ci-verify