X Tutup
Skip to content

Commit ed1c844

Browse files
author
John Kleinschmidt
committed
Update CI to use Node 8
1 parent f993888 commit ed1c844

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
jobs:
44
electron-linux-arm:
55
docker:
6-
- image: electronbuilds/electron:0.0.6
6+
- image: electronbuilds/electron:0.0.7
77
environment:
88
TARGET_ARCH: arm
99
resource_class: 2xlarge
@@ -96,7 +96,7 @@ jobs:
9696
fi
9797
electron-linux-arm64:
9898
docker:
99-
- image: electronbuilds/electron:0.0.6
99+
- image: electronbuilds/electron:0.0.7
100100
environment:
101101
TARGET_ARCH: arm64
102102
resource_class: 2xlarge
@@ -189,7 +189,7 @@ jobs:
189189
fi
190190
electron-linux-ia32:
191191
docker:
192-
- image: electronbuilds/electron:0.0.4
192+
- image: electronbuilds/electron:0.0.7
193193
environment:
194194
TARGET_ARCH: ia32
195195
DISPLAY: ':99.0'
@@ -278,7 +278,7 @@ jobs:
278278
path: junit
279279
electron-linux-mips64el:
280280
docker:
281-
- image: electronbuilds/electron:0.0.6
281+
- image: electronbuilds/electron:0.0.7
282282
environment:
283283
TARGET_ARCH: mips64el
284284
resource_class: xlarge
@@ -336,7 +336,7 @@ jobs:
336336
337337
electron-linux-x64:
338338
docker:
339-
- image: electronbuilds/electron:0.0.6
339+
- image: electronbuilds/electron:0.0.7
340340
environment:
341341
TARGET_ARCH: x64
342342
DISPLAY: ':99.0'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV HOME=/home
77
RUN chmod a+rwx /home
88

99
# Install node.js
10-
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
10+
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
1111
RUN apt-get update && apt-get install -y nodejs
1212

1313
# Install wget used by crash reporter

Dockerfile.arm64v8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN apt-get update && apt-get install -y\
4646
xvfb
4747

4848
# Install node.js
49-
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
49+
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
5050
RUN apt-get update && apt-get install -y nodejs
5151

5252
# Install crcmod

Dockerfile.armv7

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,8 @@ RUN apt-get update && apt-get install -y\
2929
wget \
3030
xvfb
3131

32-
# Install node.js
33-
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
34-
RUN apt-get update && apt-get install -y nodejs
35-
3632
ADD tools/xvfb-init.sh /etc/init.d/xvfb
3733
RUN chmod a+x /etc/init.d/xvfb
3834
ADD tools/run-electron.sh /run-electron.sh
3935
RUN chmod a+x /run-electron.sh
40-
4136
CMD sh /run-electron.sh

Dockerfile.circleci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM electronbuilds/libchromiumcontent:0.0.4
33
USER root
44

55
# Install node.js
6-
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
6+
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
77
RUN apt-get update && apt-get install -y nodejs
88

99
# Install wget used by crash reporter

Jenkinsfile.arm64

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
pipeline {
22
agent {
33
docker {
4-
image 'electronbuilds/arm64v8:0.0.1'
4+
image 'electronbuilds/arm64v8:0.0.2'
55
args '--privileged'
66
}
77
}
88
environment {
99
TARGET_ARCH='arm64'
1010
DISPLAY=':99.0'
11+
MOCHA_TIMEOUT='60000'
1112
}
1213
stages {
1314
stage('Bootstrap') {

0 commit comments

Comments
 (0)
X Tutup