From 07c90ab258ad7092b1a629eb7891e4a42ca2b22a Mon Sep 17 00:00:00 2001 From: Carlo Sciolla Date: Sun, 18 Mar 2018 19:22:16 +0100 Subject: [PATCH] Need java for pretty much everything --- .circleci/config.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7e757b4..e7fd6c6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,6 +4,8 @@ version: 2.0 default: &default-steps steps: - checkout + - apt-get update + - apt-get install -y openjdk-8-jre - run: make # Enumerated list of Emacs versions @@ -32,14 +34,6 @@ jobs: entrypoint: bash <<: *default-steps - coverage: - docker: - - image: silex/emacs:25 - entrypoint: bash - steps: - - checkout - - run: make clean submit-coverage - # Executing in parallel workflows: version: 2 @@ -49,9 +43,3 @@ workflows: - test-emacs-25 - test-emacs-26 - test-emacs-master - - coverage: - requires: - - test-emacs-24 - - test-emacs-25 - - test-emacs-26 - - test-emacs-master