Re-added "Install Clojure" steps
This commit is contained in:
parent
94fbf5977e
commit
fcc23b7908
1 changed files with 24 additions and 0 deletions
|
|
@ -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" }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue