Skip to content

Commit

Permalink
Update Clojure to v1.12.0.1479
Browse files Browse the repository at this point in the history
With two exceptions in module byte-string and db because of Cloverage
reflection issues.
  • Loading branch information
alexanderkiel committed Sep 14, 2024
1 parent 5ac1ced commit 708f732
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@bc7570e912b028bbcc22f457adec7fdf98e2f4ed # 12.5
with:
cli: '1.11.4.1474'
cli: '1.12.0.1479'

- name: Check out Git repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@bc7570e912b028bbcc22f457adec7fdf98e2f4ed # 12.5
with:
cli: '1.11.4.1474'
cli: '1.12.0.1479'

- name: Check out Git repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@bc7570e912b028bbcc22f457adec7fdf98e2f4ed # 12.5
with:
cli: '1.11.4.1474'
cli: '1.12.0.1479'

- name: Check out Git repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@bc7570e912b028bbcc22f457adec7fdf98e2f4ed # 12.5
with:
cli: '1.11.4.1474'
cli: '1.12.0.1479'

- name: Check out Git repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand Down Expand Up @@ -1453,7 +1453,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@bc7570e912b028bbcc22f457adec7fdf98e2f4ed # 12.5
with:
cli: '1.11.4.1474'
cli: '1.12.0.1479'

- name: Check out Git repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand Down Expand Up @@ -1842,7 +1842,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@bc7570e912b028bbcc22f457adec7fdf98e2f4ed # 12.5
with:
cli: '1.11.4.1474'
cli: '1.12.0.1479'

- name: Check out Git repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand Down
6 changes: 5 additions & 1 deletion modules/byte-string/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
:coverage
{:extra-deps
{lambdaisland/kaocha-cloverage
{:mvn/version "1.1.89"}}
{:mvn/version "1.1.89"}

;; TODO: remove after Cloverage reflection problems are solved. https://github.com/cloverage/cloverage/issues/345
org.clojure/clojure
{:mvn/version "1.11.4"}}

:main-opts ["-m" "kaocha.runner" "--profile" "coverage"]}}}
6 changes: 5 additions & 1 deletion modules/db/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@
:coverage
{:extra-deps
{lambdaisland/kaocha-cloverage
{:mvn/version "1.1.89"}}
{:mvn/version "1.1.89"}

;; TODO: remove after Cloverage reflection problems are solved. https://github.com/cloverage/cloverage/issues/345
org.clojure/clojure
{:mvn/version "1.11.4"}}

:main-opts ["-m" "kaocha.runner" "--profile" "coverage"]}}}

0 comments on commit 708f732

Please sign in to comment.