diff options
author | Lukas Eipert <leipert@gitlab.com> | 2019-07-22 19:05:17 +0200 |
---|---|---|
committer | Lukas Eipert <leipert@gitlab.com> | 2019-07-22 19:05:17 +0200 |
commit | 10371fb25a81064402c82033a7448a6c314efb6a (patch) | |
tree | 3880a1d275351318fa0e79169e3d687c51e7fad6 /.gitlab | |
parent | 31f6c362e74fe522c036eeadf1678849dbf6e135 (diff) | |
download | gitlab-ce-10371fb25a81064402c82033a7448a6c314efb6a.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.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/ci/frontend.gitlab-ci.yml | 6 |
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: |