fix ci splitting (#349)
This commit is contained in:
parent
b5735e12cf
commit
037a110317
1 changed files with 9 additions and 7 deletions
|
@ -19,9 +19,6 @@ jobs:
|
||||||
path: build/outputs/apk/standard
|
path: build/outputs/apk/standard
|
||||||
destination: apk
|
destination: apk
|
||||||
build:
|
build:
|
||||||
branches:
|
|
||||||
ignore:
|
|
||||||
- master
|
|
||||||
docker:
|
docker:
|
||||||
- image: registry.gitlab.com/fdroid/ci-images-client:latest
|
- image: registry.gitlab.com/fdroid/ci-images-client:latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -40,9 +37,6 @@ jobs:
|
||||||
path: build/outputs/apk/standard
|
path: build/outputs/apk/standard
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
branches:
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
docker:
|
docker:
|
||||||
- image: registry.gitlab.com/fdroid/ci-images-client:latest
|
- image: registry.gitlab.com/fdroid/ci-images-client:latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -68,7 +62,15 @@ jobs:
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build_test:
|
test_build:
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
jobs:
|
jobs:
|
||||||
- build
|
- build
|
||||||
|
test_publish:
|
||||||
|
branches:
|
||||||
|
ignore:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
- publish
|
- publish
|
||||||
|
|
Reference in a new issue