chore: Make merge trains possible
This commit is contained in:
parent
5cf97886b4
commit
4b6974e03a
|
|
@ -3,6 +3,12 @@ stages:
|
||||||
- builddocs
|
- builddocs
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
|
workflow:
|
||||||
|
rules:
|
||||||
|
- if: $CI_MERGE_REQUEST_IID
|
||||||
|
- if: $CI_COMMIT_TAG
|
||||||
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
tags:
|
tags:
|
||||||
- linux
|
- linux
|
||||||
|
|
@ -94,8 +100,8 @@ build_api_doc:
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- doc/api/
|
- doc/api/
|
||||||
only:
|
rules:
|
||||||
- main
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
|
||||||
build_doc:
|
build_doc:
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -109,8 +115,8 @@ build_doc:
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- doc-public
|
- doc-public
|
||||||
only:
|
rules:
|
||||||
- main
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -127,8 +133,8 @@ pages:
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
only:
|
rules:
|
||||||
- main
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
|
||||||
# Adds license-scanning job. Because Gitlab does not support pub.dev
|
# Adds license-scanning job. Because Gitlab does not support pub.dev
|
||||||
# we added https://github.com/oss-review-toolkit/ort
|
# we added https://github.com/oss-review-toolkit/ort
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue