summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Eipert <leipert@gitlab.com>2019-07-22 19:05:17 +0200
committerLukas Eipert <leipert@gitlab.com>2019-07-22 19:05:17 +0200
commit10371fb25a81064402c82033a7448a6c314efb6a (patch)
tree3880a1d275351318fa0e79169e3d687c51e7fad6
parent31f6c362e74fe522c036eeadf1678849dbf6e135 (diff)
downloadgitlab-ce-64930-fix-node-sass-compilation-error.tar.gz
Use debian based node images for qa tests64930-fix-node-sass-compilation-error
The alpine images do not contain a full build toolchain, so if the pre-compiled node-sass bindings cannot be downloaded, they will error and break master. By switching to the debian based images, we are able to compile in case the downloads are not available.
-rw-r--r--.gitlab/ci/frontend.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab/ci/frontend.gitlab-ci.yml b/.gitlab/ci/frontend.gitlab-ci.yml
index b00d2f46088..5d4bbc06e93 100644
--- a/.gitlab/ci/frontend.gitlab-ci.yml
+++ b/.gitlab/ci/frontend.gitlab-ci.yml
@@ -210,15 +210,15 @@ qa:selectors:
qa-frontend-node:8:
<<: *qa-frontend-node
- image: node:8-alpine
+ image: node:carbon
qa-frontend-node:10:
<<: *qa-frontend-node
- image: node:10-alpine
+ image: node:dubnium
qa-frontend-node:latest:
<<: *qa-frontend-node
- image: node:alpine
+ image: node:latest
allow_failure: true
lint:javascript:report: