From fcc23b79081459eedc77c6344f64f8f7f22e01ed Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Thu, 9 Sep 2021 19:21:16 -0300 Subject: [PATCH] Re-added "Install Clojure" steps --- .circleci/config.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 142bd0cb..0a36c261 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -82,6 +82,12 @@ jobs: - restore_cache: keys: - linux-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }} + - run: + name: Install Clojure + command: | + wget -nc https://download.clojure.org/install/linux-install-1.10.1.447.sh + chmod +x linux-install-1.10.1.447.sh + ./linux-install-1.10.1.447.sh - run: name: Install native dev tools command: | @@ -156,6 +162,12 @@ jobs: - restore_cache: keys: - linux-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }} + - run: + name: Install Clojure + command: | + wget -nc https://download.clojure.org/install/linux-install-1.10.1.447.sh + chmod +x linux-install-1.10.1.447.sh + ./linux-install-1.10.1.447.sh - run: name: Install native dev tools command: | @@ -226,6 +238,12 @@ jobs: then circleci task halt fi + - run: + name: Install Clojure + command: | + wget -nc https://download.clojure.org/install/linux-install-1.10.1.447.sh + chmod +x linux-install-1.10.1.447.sh + ./linux-install-1.10.1.447.sh - restore_cache: keys: - linux-aarch64-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }} @@ -299,6 +317,12 @@ jobs: # then # circleci task halt # fi + - run: + name: Install Clojure + command: | + wget -nc https://download.clojure.org/install/linux-install-1.10.1.447.sh + chmod +x linux-install-1.10.1.447.sh + ./linux-install-1.10.1.447.sh - restore_cache: keys: - linux-aarch64-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }}