I have many development branches, but I want CircleCI to only care about master.
Is there something I can configure, either in Circle or circle.yml
? Alas I can't find anything on the topic in Circle's docs.
Without the checkout step, CircleCI doesn't have your code. Without the code, it can't do anything that it's suppose to do. For example, CircleCI won't be able to run your tests, compile your code, or deploy your code.
CircleCI can be configured to run very complex pipelines efficiently with sophisticated caching, docker layer caching, and resource classes for running on faster machines. As a developer using CircleCI you can: SSH into any job to debug your build issues.
CircleCI uses your config. yml file to run the pipeline. You can see the output in the CircleCI dashboard.
Give CircleCI a list of branches that are the only ones it should auto-build by adding the following to circle.yml
:
general:
branches:
only:
- master
Alternatively, if you had a fixed list of branches that you didn't want to build, you could blacklist them with ignore:
general:
branches:
ignore:
- before-rethinkdb
- rethinkdb
Documentation is here: https://circleci.com/docs/configuration/#branches
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With