From 2e41bafc4349e8cc01404eff47f303112fda797f Mon Sep 17 00:00:00 2001 From: Tero Paloheimo Date: Thu, 13 Aug 2020 22:02:52 +0300 Subject: [PATCH] Fix NodeJS installation problem in CircleCI Also remove a commented environment setting. --- .circleci/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b50d3df..f65eec6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,17 +4,15 @@ jobs: working_directory: ~/honeysql docker: - image: circleci/clojure:openjdk-11-tools-deps-1.10.0.442 -# environment: -# JVM_OPTS: -Xmx3200m steps: - checkout - restore_cache: key: honeysql-{{ checksum "deps.edn" }} - run: name: Install Node - command: sudo apt-get install -y nodejs + command: sudo apt-get update && sudo apt-get install -y nodejs - run: - name: Add node symlink + name: Add Node symlink command: sudo ln -s /usr/bin/js /usr/bin/node - run: name: Download Dependencies