mirror of https://github.com/grafana/grafana.git
ci-e2e: Add Git (#28410)
* ci-e2e: Add Git Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Drone: Update e2e image Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
parent
d3def11521
commit
f158e4f526
12
.drone.yml
12
.drone.yml
|
|
@ -128,7 +128,7 @@ steps:
|
||||||
- package
|
- package
|
||||||
|
|
||||||
- name: end-to-end-tests
|
- name: end-to-end-tests
|
||||||
image: grafana/ci-e2e:12.18-1
|
image: grafana/ci-e2e:12.19.0-1
|
||||||
commands:
|
commands:
|
||||||
- ./node_modules/.bin/cypress install
|
- ./node_modules/.bin/cypress install
|
||||||
- ./bin/grabpl e2e-tests
|
- ./bin/grabpl e2e-tests
|
||||||
|
|
@ -423,7 +423,7 @@ steps:
|
||||||
- package
|
- package
|
||||||
|
|
||||||
- name: end-to-end-tests
|
- name: end-to-end-tests
|
||||||
image: grafana/ci-e2e:12.18-1
|
image: grafana/ci-e2e:12.19.0-1
|
||||||
commands:
|
commands:
|
||||||
- ./node_modules/.bin/cypress install
|
- ./node_modules/.bin/cypress install
|
||||||
- ./bin/grabpl e2e-tests
|
- ./bin/grabpl e2e-tests
|
||||||
|
|
@ -859,7 +859,7 @@ steps:
|
||||||
- package
|
- package
|
||||||
|
|
||||||
- name: end-to-end-tests
|
- name: end-to-end-tests
|
||||||
image: grafana/ci-e2e:12.18-1
|
image: grafana/ci-e2e:12.19.0-1
|
||||||
commands:
|
commands:
|
||||||
- ./node_modules/.bin/cypress install
|
- ./node_modules/.bin/cypress install
|
||||||
- ./bin/grabpl e2e-tests
|
- ./bin/grabpl e2e-tests
|
||||||
|
|
@ -1221,7 +1221,7 @@ steps:
|
||||||
- package
|
- package
|
||||||
|
|
||||||
- name: end-to-end-tests
|
- name: end-to-end-tests
|
||||||
image: grafana/ci-e2e:12.18-1
|
image: grafana/ci-e2e:12.19.0-1
|
||||||
commands:
|
commands:
|
||||||
- ./node_modules/.bin/cypress install
|
- ./node_modules/.bin/cypress install
|
||||||
- ./bin/grabpl e2e-tests
|
- ./bin/grabpl e2e-tests
|
||||||
|
|
@ -1628,7 +1628,7 @@ steps:
|
||||||
- package
|
- package
|
||||||
|
|
||||||
- name: end-to-end-tests
|
- name: end-to-end-tests
|
||||||
image: grafana/ci-e2e:12.18-1
|
image: grafana/ci-e2e:12.19.0-1
|
||||||
commands:
|
commands:
|
||||||
- ./node_modules/.bin/cypress install
|
- ./node_modules/.bin/cypress install
|
||||||
- ./bin/grabpl e2e-tests
|
- ./bin/grabpl e2e-tests
|
||||||
|
|
@ -1980,7 +1980,7 @@ steps:
|
||||||
- package
|
- package
|
||||||
|
|
||||||
- name: end-to-end-tests
|
- name: end-to-end-tests
|
||||||
image: grafana/ci-e2e:12.18-1
|
image: grafana/ci-e2e:12.19.0-1
|
||||||
commands:
|
commands:
|
||||||
- ./node_modules/.bin/cypress install
|
- ./node_modules/.bin/cypress install
|
||||||
- ./bin/grabpl e2e-tests
|
- ./bin/grabpl e2e-tests
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ FROM node:12.19.0-buster-slim
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -yq gnupg netcat curl
|
RUN apt-get update && apt-get install -yq gnupg netcat curl git
|
||||||
RUN curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \
|
RUN curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \
|
||||||
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list && \
|
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list && \
|
||||||
# Cypress dependencies
|
# Cypress dependencies
|
||||||
|
|
|
||||||
|
|
@ -605,7 +605,7 @@ def e2e_tests_server_step():
|
||||||
def e2e_tests_step():
|
def e2e_tests_step():
|
||||||
return {
|
return {
|
||||||
'name': 'end-to-end-tests',
|
'name': 'end-to-end-tests',
|
||||||
'image': 'grafana/ci-e2e:12.18-1',
|
'image': 'grafana/ci-e2e:12.19.0-1',
|
||||||
'depends_on': [
|
'depends_on': [
|
||||||
'end-to-end-tests-server',
|
'end-to-end-tests-server',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue