Include public/app/plugins/**/plugin.json in the BE test paths (#50756)

This commit is contained in:
Dimitris Sotirakis 2022-06-14 12:22:52 +03:00 committed by GitHub
parent 2a72dff356
commit 7566f800e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -166,6 +166,7 @@ trigger:
- conf/** - conf/**
- go.sum - go.sum
- go.mod - go.mod
- public/app/plugins/**/plugin.json
type: docker type: docker
volumes: volumes:
- host: - host:
@ -4682,6 +4683,6 @@ kind: secret
name: gcp_upload_artifacts_key name: gcp_upload_artifacts_key
--- ---
kind: signature kind: signature
hmac: 5f90961f151491580770a354e6f60ceddf35557f1094ec0ee94369fe52285697 hmac: 1327a42ff9a4cd493e256b2d795783077e344ae2f2374e7fb5b5543e534e8401
... ...

View File

@ -103,7 +103,7 @@ def pr_test_backend():
test_backend_integration_step(edition="oss"), test_backend_integration_step(edition="oss"),
] ]
return pipeline( return pipeline(
name='pr-test-backend', edition="oss", trigger=get_pr_trigger(include_paths=['pkg/**', 'packaging/**', '.drone.yml', 'conf/**', 'go.sum', 'go.mod']), services=[], steps=init_steps + test_steps, name='pr-test-backend', edition="oss", trigger=get_pr_trigger(include_paths=['pkg/**', 'packaging/**', '.drone.yml', 'conf/**', 'go.sum', 'go.mod', 'public/app/plugins/**/plugin.json']), services=[], steps=init_steps + test_steps,
) )