diff --git a/.github/workflows/clojure.yml b/.github/workflows/clojure.yml index fe03055c9..48f2abe31 100644 --- a/.github/workflows/clojure.yml +++ b/.github/workflows/clojure.yml @@ -14,7 +14,7 @@ jobs: # Supported Java versions: LTS releases and latest # TODO: Replace 19=>20 when available jdk: [8, 11, 17, 19] - clojure: [10, 11] + clojure: [11] name: Clojure ${{ matrix.clojure }} (Java ${{ matrix.jdk }}) diff --git a/bin/kaocha b/bin/kaocha index 20e3fd340..9c1c4cea1 100755 --- a/bin/kaocha +++ b/bin/kaocha @@ -1,3 +1,3 @@ #!/usr/bin/env bash # Should work if the env var is empty -clojure -A:$CLOJURE -M:test -m kaocha.runner "$@" +clojure -A:$CLOJURE_ALIAS -M:test -m kaocha.runner "$@" diff --git a/deps.edn b/deps.edn index f06eac55e..e5f1b6466 100644 --- a/deps.edn +++ b/deps.edn @@ -77,5 +77,4 @@ :jvm-opts ["-server" "-Xmx4096m" "-Dclojure.compiler.direct-linking=true"]} - :clojure-10 {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}}} :clojure-11 {}}}