rckeller/runtime-optimizer
is a collection of CircleCI commands used to improve the runtime and efficiency of CI runs. This orb handles complex optimizations such as caching and static analysis of commit histories under the hood, keeping your jobs simple and effective. CircleCI bills based on runtime, making these commands incredibly useful for keeping costs down.
Halts and passes jobs if watched files have not been changed since the last CI job. For example, if you're doing full stack development and only change the files in server/
, only your server-side tests will run.
WIP - An optimized version of the built-in checkout
step, with support for git caching.
Run these commands before pushing commits - prevents changes from being punted back by the orb linter.
# validate the CI pipeline and code for the orb itself
circleci config validate
yamllint -d .yamllint .
# get ready to publish
circleci setup
circleci orb validate src/@orb.yml
# publish the current code in the lowest possible environment
circleci config pack --skip-update-check src > orb.yml
circleci orb --skip-update-check validate orb.yml
circleci orb publish orb.yml rckeller/runtime-optimizer@dev:alpha