Skip to content
Snippets Groups Projects
Unverified Commit 6c62db77 authored by Luis Paolini's avatar Luis Paolini Committed by GitHub
Browse files

Update Clojure CLI on CI and Dockerfile (#29723)

* Update Clojure CLI

Most important change: using stable tools.deps

https://clojure.org/releases/tools
parent 14d7a90c
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ inputs:
default: '11'
clojure-version:
required: true
default: '1.11.1.1208'
default: '1.11.1.1262'
m2-cache-key:
description: 'Key to cache M2 packages from Maven Central'
required: true
......
......@@ -9,9 +9,9 @@ ARG MB_EDITION=oss
WORKDIR /home/node
RUN apt-get update && apt-get upgrade -y && apt-get install openjdk-11-jdk curl git -y \
&& curl -O https://download.clojure.org/install/linux-install-1.11.1.1208.sh \
&& chmod +x linux-install-1.11.1.1208.sh \
&& ./linux-install-1.11.1.1208.sh
&& curl -O https://download.clojure.org/install/linux-install-1.11.1.1262.sh \
&& chmod +x linux-install-1.11.1.1262.sh \
&& ./linux-install-1.11.1.1262.sh
COPY . .
RUN INTERACTIVE=false CI=true MB_EDITION=$MB_EDITION bin/build.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment