Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup
uses: ./.github/workflows/shared-setup
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/libs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup
uses: ./.github/workflows/shared-setup
Expand All @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -61,5 +61,12 @@ jobs:
uses: ./.github/workflows/setup-planck
if: contains( matrix.requires, 'planck' )

# The runner image comes with a later version gradle that does not work with antq unit tests yet
- name: Install Gradle for antq
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: '8.14.3'
if: matrix.lib-name == 'antq'

- name: Run Libs Tests
run: bb test-libs run ${{ matrix.lib-name }}
2 changes: 1 addition & 1 deletion .github/workflows/native-image-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: matrix.os == 'windows'

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup
uses: ./.github/workflows/shared-setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup
uses: ./.github/workflows/shared-setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup
uses: ./.github/workflows/shared-setup
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
if: matrix.os == 'windows'

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup
uses: ./.github/workflows/shared-setup
Expand Down
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
{;; for disabling the official compiler
:classpath-overrides {org.clojure/clojure nil}
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.1"}
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.4.6"}}
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.0"}}
:jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}

:nrepl/jvm
Expand All @@ -59,7 +59,7 @@
;;
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
;; so we do not pick up our own clj-kondo config exports
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2025.06.05"}}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2025.07.28"}}
:override-deps {org.clojure/clojure {:mvn/version "1.12.1"}}
:main-opts ["-m" "clj-kondo.main"]}

Expand Down Expand Up @@ -158,7 +158,7 @@
;;
;; Deployment
;;
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.9"}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.10"}}
:extra-paths ["src" "build"]
:ns-default build}

Expand Down
2 changes: 1 addition & 1 deletion script/test_libs.clj
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@
:test-cmds ["bb test"]}
{:name "clojure-mcp"
:platforms [:clj]
:version "0.1.7-alpha"
:version "0.1.8-alpha"
:github-release {:repo "bhauman/clojure-mcp"
:via :tag
:version-prefix "v"}
Expand Down
Loading