CI: Remove initialize step from integration tests pipeline (#43663)

* Remove initialize step from integration tests

* Remove initialize step from integration tests on main pipelines
This commit is contained in:
Dimitris Sotirakis 2022-01-04 15:17:20 +02:00 committed by GitHub
parent df4e9ca12b
commit e3baa24946
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 24 deletions

View File

@ -372,16 +372,6 @@ steps:
- chmod +x bin/grabpl - chmod +x bin/grabpl
image: byrnedo/alpine-curl:0.1.8 image: byrnedo/alpine-curl:0.1.8
name: grabpl name: grabpl
- commands:
- echo $DRONE_RUNNER_NAME
image: alpine:3.14.3
name: identify-runner
- commands:
- make gen-go
- ./bin/grabpl gen-version --build-id ${DRONE_BUILD_NUMBER}
- yarn install --immutable
image: grafana/build-container:1.4.8
name: initialize
- commands: - commands:
- apt-get update - apt-get update
- apt-get install -yq postgresql-client - apt-get install -yq postgresql-client
@ -904,16 +894,6 @@ steps:
- chmod +x bin/grabpl - chmod +x bin/grabpl
image: byrnedo/alpine-curl:0.1.8 image: byrnedo/alpine-curl:0.1.8
name: grabpl name: grabpl
- commands:
- echo $DRONE_RUNNER_NAME
image: alpine:3.14.3
name: identify-runner
- commands:
- make gen-go
- ./bin/grabpl gen-version --build-id ${DRONE_BUILD_NUMBER}
- yarn install --immutable
image: grafana/build-container:1.4.8
name: initialize
- commands: - commands:
- apt-get update - apt-get update
- apt-get install -yq postgresql-client - apt-get install -yq postgresql-client
@ -4499,6 +4479,6 @@ kind: secret
name: gcp_upload_artifacts_key name: gcp_upload_artifacts_key
--- ---
kind: signature kind: signature
hmac: 0140292b5e609a2db7f55c930a9072d5bd1afa92ebd6043ed10314119413c331 hmac: 39bd9bda630c4071f354cb8f5192a84b37fadfd588fc13cc48bc5f0c036c163a
... ...

View File

@ -180,7 +180,7 @@ def main_pipelines(edition):
), ),
pipeline( pipeline(
name='main-integration-tests', edition=edition, trigger=trigger, services=services, name='main-integration-tests', edition=edition, trigger=trigger, services=services,
steps=[download_grabpl_step()] + initialize_step(edition, platform='linux', ver_mode=ver_mode) + integration_test_steps, steps=[download_grabpl_step()] + integration_test_steps,
volumes=volumes, volumes=volumes,
), ),
pipeline( pipeline(

View File

@ -128,7 +128,7 @@ def pr_pipelines(edition):
+ build_steps, + build_steps,
), pipeline( ), pipeline(
name='pr-integration-tests', edition=edition, trigger=trigger, services=services, name='pr-integration-tests', edition=edition, trigger=trigger, services=services,
steps=[download_grabpl_step()] + initialize_step(edition, platform='linux', ver_mode=ver_mode) + integration_test_steps, steps=[download_grabpl_step()] + integration_test_steps,
volumes=volumes, volumes=volumes,
), ),
] ]