mirror of
https://github.com/grafana/grafana.git
synced 2025-01-28 09:17:12 -06:00
CI: Rename main
pipelines (#48245)
* Rename main pipelines * Rename dependencies
This commit is contained in:
parent
53fcb7e171
commit
430b9ae5cb
14
.drone.yml
14
.drone.yml
@ -1222,7 +1222,7 @@ depends_on:
|
||||
- main-build-e2e-publish
|
||||
- main-integration-tests
|
||||
kind: pipeline
|
||||
name: windows-main
|
||||
name: main-windows
|
||||
platform:
|
||||
arch: amd64
|
||||
os: windows
|
||||
@ -1310,9 +1310,9 @@ depends_on:
|
||||
- main-test
|
||||
- main-build-e2e-publish
|
||||
- main-integration-tests
|
||||
- windows-main
|
||||
- main-windows
|
||||
kind: pipeline
|
||||
name: publish-main
|
||||
name: main-publish
|
||||
node:
|
||||
type: no-parallel
|
||||
platform:
|
||||
@ -1364,10 +1364,10 @@ depends_on:
|
||||
- main-test
|
||||
- main-build-e2e-publish
|
||||
- main-integration-tests
|
||||
- windows-main
|
||||
- publish-main
|
||||
- main-windows
|
||||
- main-publish
|
||||
kind: pipeline
|
||||
name: notify-main
|
||||
name: main-notify
|
||||
platform:
|
||||
arch: amd64
|
||||
os: linux
|
||||
@ -4536,6 +4536,6 @@ kind: secret
|
||||
name: gcp_upload_artifacts_key
|
||||
---
|
||||
kind: signature
|
||||
hmac: 9380beb722ab1276e9219ae41fa07c84db1e7dc249f69e42386f868c026e1795
|
||||
hmac: 48f6a3ade75e5993b4a49d8f1a5b7d184a63767a108b16c5f71eca6c986da9c7
|
||||
|
||||
...
|
||||
|
@ -238,19 +238,19 @@ def main_pipelines(edition):
|
||||
steps=[download_grabpl_step(), identify_runner_step(),] + integration_test_steps,
|
||||
volumes=volumes,
|
||||
), pipeline(
|
||||
name='windows-main', edition=edition, trigger=dict(trigger, repo=['grafana/grafana']),
|
||||
name='main-windows', edition=edition, trigger=dict(trigger, repo=['grafana/grafana']),
|
||||
steps=[identify_runner_step('windows')] + windows_steps,
|
||||
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests'], platform='windows',
|
||||
), notify_pipeline(
|
||||
name='notify-drone-changes', slack_channel='slack-webhooks-test', trigger=drone_change_trigger,
|
||||
template=drone_change_template, secret='drone-changes-webhook',
|
||||
), pipeline(
|
||||
name='publish-main', edition=edition, trigger=dict(trigger, repo=['grafana/grafana']),
|
||||
name='main-publish', edition=edition, trigger=dict(trigger, repo=['grafana/grafana']),
|
||||
steps=[download_grabpl_step(), identify_runner_step(),] + store_steps,
|
||||
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests', 'windows-main', ],
|
||||
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests', 'main-windows', ],
|
||||
), notify_pipeline(
|
||||
name='notify-main', slack_channel='grafana-ci-notifications', trigger=dict(trigger, status=['failure']),
|
||||
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests', 'windows-main', 'publish-main'],
|
||||
name='main-notify', slack_channel='grafana-ci-notifications', trigger=dict(trigger, status=['failure']),
|
||||
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests', 'main-windows', 'main-publish'],
|
||||
template=failure_template, secret='slack_webhook'
|
||||
)]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user