Skip to content

Commit

Permalink
Enable testing with python-dbusmock
Browse files Browse the repository at this point in the history
  • Loading branch information
John Kleinschmidt committed Dec 5, 2017
1 parent f2da3e9 commit e59aa71
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
electron-linux-arm:
docker:
- image: electronbuilds/electron:0.0.3
- image: electronbuilds/electron:0.0.4
environment:
TARGET_ARCH: arm
resource_class: 2xlarge
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
fi
electron-linux-arm64:
docker:
- image: electronbuilds/electron:0.0.3
- image: electronbuilds/electron:0.0.4
environment:
TARGET_ARCH: arm64
resource_class: 2xlarge
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
fi
electron-linux-ia32:
docker:
- image: electronbuilds/electron:0.0.3
- image: electronbuilds/electron:0.0.4
environment:
TARGET_ARCH: ia32
resource_class: xlarge
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
fi
electron-linux-mips64el:
docker:
- image: electronbuilds/electron:0.0.3
- image: electronbuilds/electron:0.0.4
environment:
TARGET_ARCH: mips64el
resource_class: xlarge
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
electron-linux-x64:
docker:
- image: electronbuilds/electron:0.0.3
- image: electronbuilds/electron:0.0.4
environment:
TARGET_ARCH: x64
DISPLAY: ':99.0'
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ RUN chmod a+rwx /home

# Install node.js
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get update && apt-get install -y --force-yes nodejs
RUN apt-get update && apt-get install -y nodejs

# Install wget used by crash reporter
RUN apt-get install -y --force-yes wget
RUN apt-get install -y wget

# Install python-dbusmock
RUN apt-get install -y python-dbusmock

# Add xvfb init script
ADD tools/xvfb-init.sh /etc/init.d/xvfb
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile.circleci
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ USER root

# Install node.js
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get update && apt-get install -y --force-yes nodejs
RUN apt-get update && apt-get install -y nodejs

# Install wget used by crash reporter
RUN apt-get install -y --force-yes wget
RUN apt-get install -y wget

# Install python-dbusmock
RUN apt-get install -y python-dbusmock

# Add xvfb init script
ADD tools/xvfb-init.sh /etc/init.d/xvfb
Expand Down

0 comments on commit e59aa71

Please sign in to comment.