Re-added "Install Clojure" steps

This commit is contained in:
Thiago Kenji Okada 2021-09-09 19:21:16 -03:00
parent 94fbf5977e
commit fcc23b7908

View file

@ -82,6 +82,12 @@ jobs:
- restore_cache: - restore_cache:
keys: keys:
- linux-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }} - 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: - run:
name: Install native dev tools name: Install native dev tools
command: | command: |
@ -156,6 +162,12 @@ jobs:
- restore_cache: - restore_cache:
keys: keys:
- linux-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }} - 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: - run:
name: Install native dev tools name: Install native dev tools
command: | command: |
@ -226,6 +238,12 @@ jobs:
then then
circleci task halt circleci task halt
fi 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: - restore_cache:
keys: keys:
- linux-aarch64-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }} - linux-aarch64-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }}
@ -299,6 +317,12 @@ jobs:
# then # then
# circleci task halt # circleci task halt
# fi # 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: - restore_cache:
keys: keys:
- linux-aarch64-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }} - linux-aarch64-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }}