Skip to content

Commit

Permalink
ci: use branch filtering in circle ci to avoid test runs for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Feb 20, 2019
1 parent 971fb1b commit 08ba0be
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,11 +257,27 @@ workflows:
securedrop_ci:
jobs:
- lint
- xenial-app-tests
- admin-tests
- updater-gui-tests
- xenial-app-tests:
filters:
branches:
ignore:
- /docs-.*/
- admin-tests:
filters:
branches:
ignore:
- /docs-.*/
- updater-gui-tests:
filters:
branches:
ignore:
- /docs-.*/
- static-analysis-and-no-known-cves
- staging-test-with-rebase:
filters:
branches:
ignore:
- /docs-.*/
requires:
- lint
nightly:
Expand Down

0 comments on commit 08ba0be

Please sign in to comment.