mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
Drone: Always pass --no-pull-enterprise (#27108)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
parent
04249ae7ad
commit
34d9191ca7
@ -312,7 +312,7 @@ steps:
|
||||
- name: build-backend
|
||||
image: grafana/build-container:1.2.24
|
||||
commands:
|
||||
- ./bin/grabpl build-backend --jobs 8 --edition oss --build-id $DRONE_BUILD_NUMBER
|
||||
- ./bin/grabpl build-backend --jobs 8 --edition oss --build-id $DRONE_BUILD_NUMBER --no-pull-enterprise
|
||||
depends_on:
|
||||
- initialize
|
||||
- lint-backend
|
||||
|
@ -289,7 +289,7 @@ def publish_storybook_step(edition):
|
||||
|
||||
def build_backend_step(edition, variants=None):
|
||||
if variants:
|
||||
variants_str = ' --variants {} --no-pull-enterprise'.format(','.join(variants))
|
||||
variants_str = ' --variants {}'.format(','.join(variants))
|
||||
else:
|
||||
variants_str = ''
|
||||
return {
|
||||
@ -302,7 +302,7 @@ def build_backend_step(edition, variants=None):
|
||||
],
|
||||
'commands': [
|
||||
# TODO: Convert number of jobs to percentage
|
||||
'./bin/grabpl build-backend --jobs 8 --edition {} --build-id $DRONE_BUILD_NUMBER{}'.format(
|
||||
'./bin/grabpl build-backend --jobs 8 --edition {} --build-id $DRONE_BUILD_NUMBER{} --no-pull-enterprise'.format(
|
||||
edition, variants_str
|
||||
),
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user