diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-10-02 22:51:15 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-10-02 22:51:15 +0200 |
commit | 97b38518cfae7d5105321b43c0aa661a6a76a6f8 (patch) | |
tree | b89cf405075fd95fb9707e6d3d64e42443cd41aa /.circleci | |
parent | 09c5ec78eeb3de9292fd71e124d75976287cbaa9 (diff) | |
download | bugzilla-97b38518cfae7d5105321b43c0aa661a6a76a6f8.tar.gz bugzilla-97b38518cfae7d5105321b43c0aa661a6a76a6f8.tar.xz |
make circleci actually work
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index f25439d1e..ab492fca3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,12 +5,13 @@ version: 2 -standard_filters: &standard_filters +build_filters: &build_filters branches: only: - master - development - production + - /test-[a-zA-Z0-9_-]+/ tags: only: - /release-[0-9]{6}\.[0-9]+/ @@ -170,22 +171,18 @@ workflows: version: 2 main: jobs: - - test_sanity: - filters: *standard_filters + - test_sanity - test_bmo: - filters: *standard_filters requires: - test_sanity - test_webservices: - filters: *standard_filters requires: - test_sanity - test_selenium: - filters: *standard_filters requires: - test_sanity - build: - filters: *standard_filters + filters: *build_filters requires: - test_sanity - test_bmo |