Skip to content

Commit 74ba15e

Browse files
committed
Feature(CI): Add Node 10 to builds
1 parent 288c81b commit 74ba15e

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

.gitlab-ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,18 @@ stages:
1111
- npm run build
1212
- npm run test
1313

14+
node-10-llvm-6:
15+
image: registry.gitlab.com/ovr/staticscript:node-10-llvm-6
16+
<<: *run_tests
17+
18+
node-10-llvm-7:
19+
image: registry.gitlab.com/ovr/staticscript:node-10-llvm-7
20+
<<: *run_tests
21+
22+
node-10-llvm-8:
23+
image: registry.gitlab.com/ovr/staticscript:node-10-llvm-8
24+
<<: *run_tests
25+
1426
node-11-llvm-6:
1527
image: registry.gitlab.com/ovr/staticscript:node-11-llvm-6
1628
<<: *run_tests

docker/dev/node-10/llvm-6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10-slim
1+
FROM node:10-stretch
22

33
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
44
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-6.0 main" | tee -a /etc/apt/sources.list && \

docker/dev/node-10/llvm-7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10-slim
1+
FROM node:10-stretch
22

33
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
44
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-7 main" | tee -a /etc/apt/sources.list && \

docker/dev/node-10/llvm-8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10-slim
1+
FROM node:10-stretch
22

33
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
44
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch main" | tee -a /etc/apt/sources.list && \

0 commit comments

Comments
 (0)