Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
ci: update base image and install the latest clang to it
Browse files Browse the repository at this point in the history
  • Loading branch information
keplersj committed Apr 16, 2018
1 parent 2ee0e44 commit e596ef0
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ version: 2
defaults: &defaults
working_directory: /tmp/project
docker:
- image: walberla/buildenv-ubuntu-clang:3.8
environment:
CIRCLE_BUILD_IMAGE: ubuntu
ATOM_CHANNEL: stable
DISPLAY: :99
- image: arcanemagus/atom-docker-ci:stable

jobs:
checkout_code:
Expand Down Expand Up @@ -42,10 +38,9 @@ jobs:
- run:
name: Update APT
command: apt-get update
# Install some pre-requisite packages and missing dependencies from the atom package
- run:
name: Atom Prerequisites
command: apt-get --assume-yes --quiet --no-install-suggests --no-install-recommends install sudo xvfb libxss1 libasound2
name: Install Clang
command: apt-get --assume-yes --quiet --no-install-suggests --no-install-recommends install clang
# Fire up a VFB to run Atom in
- run:
name: Create VFB for Atom to run in
Expand All @@ -62,19 +57,17 @@ jobs:

beta:
<<: *defaults
environment:
ATOM_CHANNEL: beta
image: arcanemagus/atom-docker-ci:beta
steps:
# Restore project state
- attach_workspace:
at: /tmp
- run:
name: Update APT
command: apt-get update
# Install some pre-requisite packages and missing dependencies from the atom package
- run:
name: Atom Prerequisites
command: apt-get --assume-yes --quiet --no-install-suggests --no-install-recommends install sudo xvfb libxss1 libasound2
name: Install Clang
command: apt-get --assume-yes --quiet --no-install-suggests --no-install-recommends install clang
# Fire up a VFB to run Atom in
- run:
name: Create VFB for Atom to run in
Expand Down

0 comments on commit e596ef0

Please sign in to comment.