Skip to content

Commit

Permalink
chore: Use kibana's Node version for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Feb 19, 2020
1 parent 8bbe470 commit a729cde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/end2end.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ pipeline {
dir("${BASE_DIR}"){
sh '''
jobs -l
docker build --tag cypress ${CYPRESS_DIR}/ci
docker build --tag cypress --build-arg NODE_VERSION=$(cat .node-version) ${CYPRESS_DIR}/ci
docker run --rm -t --user "$(id -u):$(id -g)" \
-v `pwd`:/app --network="host" \
--name cypress cypress'''
Expand Down
3 changes: 2 additions & 1 deletion x-pack/legacy/plugins/apm/e2e/ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM node:10.19.0
ARG NODE_VERSION
FROM node:$NODE_VERSION

RUN apt-get -qq update \
&& apt-get -y -qq install xvfb \
Expand Down

0 comments on commit a729cde

Please sign in to comment.