add some manual job triggers
This commit is contained in:
parent
00d2cb0f93
commit
e2a02f1f4b
|
@ -60,6 +60,9 @@ phpunit:
|
||||||
changes:
|
changes:
|
||||||
- '**/*.php'
|
- '**/*.php'
|
||||||
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
||||||
|
- if: $CI_COMMIT_BRANCH
|
||||||
|
when: manual
|
||||||
|
allow_failure: true
|
||||||
script:
|
script:
|
||||||
- php81 ./vendor/bin/phpunit
|
- php81 ./vendor/bin/phpunit
|
||||||
|
|
||||||
|
@ -72,6 +75,9 @@ eslint:
|
||||||
changes:
|
changes:
|
||||||
- '**/*.js'
|
- '**/*.js'
|
||||||
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
||||||
|
- if: $CI_COMMIT_BRANCH
|
||||||
|
when: manual
|
||||||
|
allow_failure: true
|
||||||
script:
|
script:
|
||||||
- npm install
|
- npm install
|
||||||
- npx eslint js plugins
|
- npx eslint js plugins
|
||||||
|
@ -85,6 +91,9 @@ phpstan:
|
||||||
changes:
|
changes:
|
||||||
- '**/*.php'
|
- '**/*.php'
|
||||||
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
||||||
|
- if: $CI_COMMIT_BRANCH
|
||||||
|
when: manual
|
||||||
|
allow_failure: true
|
||||||
script:
|
script:
|
||||||
- php81 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G
|
- php81 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue