From 1ead7924d2394367635624e7a008a5bfb4845e16 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Fri, 17 Jul 2020 15:09:45 +0100 Subject: [PATCH] Added build step for Java 8 download for run and deploy job --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 374e72e6bc..4fe0d4115d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -106,6 +106,14 @@ jobs: - checkout - run: npm install - run: npm run lint + - run: + name: Download Compatible JAVA Version for Selenium + command: | + java -version + sudo apt-get purge --auto-remove java-common + sudo apt-get update + sudo apt-get install openjdk-8-jdk + java -version - run: name: Download Selenium command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js