Skip to content

Commit

Permalink
Add branch and tag filter to ci
Browse files Browse the repository at this point in the history
Build master, release and ci branches
Build tags
  • Loading branch information
bcardiff committed Jan 29, 2018
1 parent d08d7c9 commit 1a1124b
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ workflows:
version: 2
build_all_platforms:
jobs:
- build_linux
- build_linux32
- build_osx
- build_linux:
filters: &ci_filter
branches:
only:
- master
- /release\/.+/
- /.*\bci\b.*/
tags:
only: /.*/
- build_linux32:
filters: *ci_filter
- build_osx:
filters: *ci_filter

0 comments on commit 1a1124b

Please sign in to comment.