CI: grabpl verify-drone -> `./bin/build verify-drone` (#55171)

* move grabpl verify-drone
pull/55061/head
Kevin Minehart 3 years ago committed by GitHub
parent 5a1ba20856
commit c69a37f8c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .drone.yml
  2. 2
      scripts/drone/pipelines/verify_drone.star
  3. 2
      scripts/drone/steps/lib.star

@ -22,7 +22,14 @@ steps:
image: byrnedo/alpine-curl:0.1.8 image: byrnedo/alpine-curl:0.1.8
name: grabpl name: grabpl
- commands: - commands:
- ./bin/grabpl verify-drone - go build -o ./bin/build -ldflags '-extldflags -static' ./pkg/build/cmd
depends_on: []
environment:
CGO_ENABLED: 0
image: golang:1.19.1
name: compile-build-cmd
- commands:
- ./bin/build verify-drone
depends_on: depends_on:
- grabpl - grabpl
image: byrnedo/alpine-curl:0.1.8 image: byrnedo/alpine-curl:0.1.8
@ -930,7 +937,7 @@ steps:
image: grafana/build-container:1.6.2 image: grafana/build-container:1.6.2
name: test-backend-integration name: test-backend-integration
- commands: - commands:
- ./bin/grabpl verify-drone - ./bin/build verify-drone
depends_on: depends_on:
- grabpl - grabpl
image: byrnedo/alpine-curl:0.1.8 image: byrnedo/alpine-curl:0.1.8
@ -5055,6 +5062,6 @@ kind: secret
name: packages_secret_access_key name: packages_secret_access_key
--- ---
kind: signature kind: signature
hmac: e21a281dc63df0317ad1082113a224b53fb5ef2f62d74eb2d7b6d11d80f0f079 hmac: f23b5538265d938735483a05a19321048c331c76551faee762816ddd59bb70e6
... ...

@ -3,6 +3,7 @@ load(
'identify_runner_step', 'identify_runner_step',
'download_grabpl_step', 'download_grabpl_step',
'lint_drone_step', 'lint_drone_step',
'compile_build_cmd',
) )
load( load(
@ -14,6 +15,7 @@ def verify_drone(trigger, ver_mode):
steps = [ steps = [
identify_runner_step(), identify_runner_step(),
download_grabpl_step(), download_grabpl_step(),
compile_build_cmd(),
lint_drone_step(), lint_drone_step(),
] ]
return pipeline( return pipeline(

@ -164,7 +164,7 @@ def lint_drone_step():
'name': 'lint-drone', 'name': 'lint-drone',
'image': curl_image, 'image': curl_image,
'commands': [ 'commands': [
'./bin/grabpl verify-drone', './bin/build verify-drone',
], ],
'depends_on': [ 'depends_on': [
'grabpl', 'grabpl',

Loading…
Cancel
Save