Skip to content

Commit 6b6ad84

Browse files
ikappakibbatsov
authored andcommitted
Start bb nREPL server at a random port
Also adds `ubuntu` to the corresponding circle ci job names to conform with other job names.
1 parent b02920a commit 6b6ad84

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.circleci/config.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -54,31 +54,31 @@ commands:
5454
command: eldev -dtT compile --warnings-as-errors
5555

5656
jobs:
57-
test-emacs-26:
57+
test-ubuntu-emacs-26:
5858
docker:
5959
- image: silex/emacs:26-dev
6060
entrypoint: bash
6161
steps:
6262
- setup
6363
- test
6464

65-
test-emacs-27:
65+
test-ubuntu-emacs-27:
6666
docker:
6767
- image: silex/emacs:27-dev
6868
entrypoint: bash
6969
steps:
7070
- setup
7171
- test
7272

73-
test-emacs-28:
73+
test-ubuntu-emacs-28:
7474
docker:
7575
- image: silex/emacs:28-dev
7676
entrypoint: bash
7777
steps:
7878
- setup
7979
- test
8080

81-
test-emacs-master:
81+
test-ubuntu-emacs-master:
8282
docker:
8383
- image: silex/emacs:master-dev
8484
entrypoint: bash
@@ -114,10 +114,10 @@ workflows:
114114
version: 2
115115
ci-test-matrix:
116116
jobs:
117-
- test-emacs-26
118-
- test-emacs-27
119-
- test-emacs-28
120-
- test-emacs-master
117+
- test-ubuntu-emacs-26
118+
- test-ubuntu-emacs-27
119+
- test-ubuntu-emacs-28
120+
- test-ubuntu-emacs-master
121121
- test-lint
122122
- test-macos-emacs-latest
123123
- test-windows-emacs-latest

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
- [#3260](https://github.com/clojure-emacs/cider/pull/3260): Scroll REPL buffer in other frame.
2525
- [#3061](https://github.com/clojure-emacs/cider/issues/3061): Allow
2626
to use `cider-connect-clj` for self-hosted cljs repls (e.g. `nbb`).
27+
- [#3293](https://github.com/clojure-emacs/cider/issues/3293): Can't jack in to more than one bb projects.
2728

2829
## 1.5.0 (2022-08-24)
2930

cider.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ By default we favor the project-specific shadow-cljs over the system-wide."
224224
:package-version '(cider . "1.2.0"))
225225

226226
(defcustom cider-babashka-parameters
227-
"nrepl-server"
227+
"nrepl-server :0"
228228
"Params passed to babashka to start an nREPL server via `cider-jack-in'."
229229
:type 'string
230230
:safe #'stringp

0 commit comments

Comments
 (0)