diff options
author | genofire <geno+dev@fireorbit.de> | 2019-06-08 22:49:37 +0200 |
---|---|---|
committer | Christian Schneppe <kriztan@users.noreply.github.com> | 2019-06-08 22:49:37 +0200 |
commit | 037a11031758090d04124db31fad0c7e68d3d1c1 (patch) | |
tree | 6aabb4332cfaa0191625351fba3f0652ecd80788 /.circleci/config.yml | |
parent | b5735e12cfb9d4da69eb8151db1a6bcc3e1dbe43 (diff) |
fix ci splitting (#349)
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 8f6443737..64b85c0f6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,9 +19,6 @@ jobs: path: build/outputs/apk/standard destination: apk build: - branches: - ignore: - - master docker: - image: registry.gitlab.com/fdroid/ci-images-client:latest steps: @@ -40,9 +37,6 @@ jobs: path: build/outputs/apk/standard publish: - branches: - only: - - master docker: - image: registry.gitlab.com/fdroid/ci-images-client:latest steps: @@ -68,7 +62,15 @@ jobs: workflows: version: 2 - build_test: + test_build: + branches: + only: + - master jobs: - build + test_publish: + branches: + ignore: + - master + jobs: - publish |