mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -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-build-e2e-publish
|
||||||
- main-integration-tests
|
- main-integration-tests
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: windows-main
|
name: main-windows
|
||||||
platform:
|
platform:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
os: windows
|
os: windows
|
||||||
@ -1310,9 +1310,9 @@ depends_on:
|
|||||||
- main-test
|
- main-test
|
||||||
- main-build-e2e-publish
|
- main-build-e2e-publish
|
||||||
- main-integration-tests
|
- main-integration-tests
|
||||||
- windows-main
|
- main-windows
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: publish-main
|
name: main-publish
|
||||||
node:
|
node:
|
||||||
type: no-parallel
|
type: no-parallel
|
||||||
platform:
|
platform:
|
||||||
@ -1364,10 +1364,10 @@ depends_on:
|
|||||||
- main-test
|
- main-test
|
||||||
- main-build-e2e-publish
|
- main-build-e2e-publish
|
||||||
- main-integration-tests
|
- main-integration-tests
|
||||||
- windows-main
|
- main-windows
|
||||||
- publish-main
|
- main-publish
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: notify-main
|
name: main-notify
|
||||||
platform:
|
platform:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
os: linux
|
os: linux
|
||||||
@ -4536,6 +4536,6 @@ kind: secret
|
|||||||
name: gcp_upload_artifacts_key
|
name: gcp_upload_artifacts_key
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 9380beb722ab1276e9219ae41fa07c84db1e7dc249f69e42386f868c026e1795
|
hmac: 48f6a3ade75e5993b4a49d8f1a5b7d184a63767a108b16c5f71eca6c986da9c7
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -238,19 +238,19 @@ def main_pipelines(edition):
|
|||||||
steps=[download_grabpl_step(), identify_runner_step(),] + integration_test_steps,
|
steps=[download_grabpl_step(), identify_runner_step(),] + integration_test_steps,
|
||||||
volumes=volumes,
|
volumes=volumes,
|
||||||
), pipeline(
|
), 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,
|
steps=[identify_runner_step('windows')] + windows_steps,
|
||||||
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests'], platform='windows',
|
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests'], platform='windows',
|
||||||
), notify_pipeline(
|
), notify_pipeline(
|
||||||
name='notify-drone-changes', slack_channel='slack-webhooks-test', trigger=drone_change_trigger,
|
name='notify-drone-changes', slack_channel='slack-webhooks-test', trigger=drone_change_trigger,
|
||||||
template=drone_change_template, secret='drone-changes-webhook',
|
template=drone_change_template, secret='drone-changes-webhook',
|
||||||
), pipeline(
|
), 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,
|
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(
|
), notify_pipeline(
|
||||||
name='notify-main', slack_channel='grafana-ci-notifications', trigger=dict(trigger, status=['failure']),
|
name='main-notify', 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'],
|
depends_on=['main-test', 'main-build-e2e-publish', 'main-integration-tests', 'main-windows', 'main-publish'],
|
||||||
template=failure_template, secret='slack_webhook'
|
template=failure_template, secret='slack_webhook'
|
||||||
)]
|
)]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user