diff --git a/.drone.yml b/.drone.yml index 506649ea05e..51d60022f85 100644 --- a/.drone.yml +++ b/.drone.yml @@ -133,7 +133,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 @@ -412,7 +412,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 @@ -859,7 +859,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 --tries 3 @@ -1269,7 +1269,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 --tries 3 @@ -1430,7 +1430,7 @@ steps: - package-enterprise2 - name: end-to-end-tests-enterprise2 - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3002 --tries 3 @@ -1814,7 +1814,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 --tries 3 @@ -2213,7 +2213,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 --tries 3 @@ -2368,7 +2368,7 @@ steps: - package-enterprise2 - name: end-to-end-tests-enterprise2 - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3002 --tries 3 @@ -2748,7 +2748,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 --tries 3 @@ -3115,7 +3115,7 @@ steps: - package - name: end-to-end-tests - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3001 --tries 3 @@ -3280,7 +3280,7 @@ steps: - package-enterprise2 - name: end-to-end-tests-enterprise2 - image: grafana/ci-e2e:12.19.0-1 + image: bezoo/grafana-ci commands: - ./node_modules/.bin/cypress install - ./bin/grabpl e2e-tests --port 3002 --tries 3 diff --git a/scripts/lib.star b/scripts/lib.star index 738ccfba059..f3fe3a22ac2 100644 --- a/scripts/lib.star +++ b/scripts/lib.star @@ -640,7 +640,7 @@ def e2e_tests_step(edition, port=3001, tries=None): cmd += ' --tries {}'.format(tries) return { 'name': 'end-to-end-tests' + enterprise2_sfx(edition), - 'image': 'grafana/ci-e2e:12.19.0-1', + 'image': 'bezoo/grafana-ci', 'depends_on': [ 'end-to-end-tests-server' + enterprise2_sfx(edition), ],