emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/cider 6b6ad84b4d 1/4: Start bb nREPL server at a random po


From: ELPA Syncer
Subject: [nongnu] elpa/cider 6b6ad84b4d 1/4: Start bb nREPL server at a random port
Date: Fri, 16 Dec 2022 05:58:29 -0500 (EST)

branch: elpa/cider
commit 6b6ad84b4d9a720b38c2d70da29e9aaa20788c16
Author: ikappaki <ikappaki@users.noreply.github.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Start bb nREPL server at a random port
    
    Also adds `ubuntu` to the corresponding circle ci job names to
    conform with other job names.
---
 .circleci/config.yml | 16 ++++++++--------
 CHANGELOG.md         |  1 +
 cider.el             |  2 +-
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 3fbd3084fa..0d1a158f93 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -54,7 +54,7 @@ commands:
           command: eldev -dtT compile --warnings-as-errors
 
 jobs:
-  test-emacs-26:
+  test-ubuntu-emacs-26:
     docker:
       - image: silex/emacs:26-dev
         entrypoint: bash
@@ -62,7 +62,7 @@ jobs:
       - setup
       - test
 
-  test-emacs-27:
+  test-ubuntu-emacs-27:
     docker:
       - image: silex/emacs:27-dev
         entrypoint: bash
@@ -70,7 +70,7 @@ jobs:
       - setup
       - test
 
-  test-emacs-28:
+  test-ubuntu-emacs-28:
     docker:
       - image: silex/emacs:28-dev
         entrypoint: bash
@@ -78,7 +78,7 @@ jobs:
       - setup
       - test
 
-  test-emacs-master:
+  test-ubuntu-emacs-master:
     docker:
       - image: silex/emacs:master-dev
         entrypoint: bash
@@ -114,10 +114,10 @@ workflows:
   version: 2
   ci-test-matrix:
     jobs:
-      - test-emacs-26
-      - test-emacs-27
-      - test-emacs-28
-      - test-emacs-master
+      - test-ubuntu-emacs-26
+      - test-ubuntu-emacs-27
+      - test-ubuntu-emacs-28
+      - test-ubuntu-emacs-master
       - test-lint
       - test-macos-emacs-latest
       - test-windows-emacs-latest
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 24343a8eb5..8a2b88bfee 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,6 +24,7 @@
 - [#3260](https://github.com/clojure-emacs/cider/pull/3260): Scroll REPL 
buffer in other frame.
 - [#3061](https://github.com/clojure-emacs/cider/issues/3061): Allow
   to use `cider-connect-clj` for self-hosted cljs repls (e.g. `nbb`).
+- [#3293](https://github.com/clojure-emacs/cider/issues/3293): Can't jack in 
to more than one bb projects.
 
 ## 1.5.0 (2022-08-24)
 
diff --git a/cider.el b/cider.el
index e7283bc697..5a21490a0a 100644
--- a/cider.el
+++ b/cider.el
@@ -224,7 +224,7 @@ By default we favor the project-specific shadow-cljs over 
the system-wide."
   :package-version '(cider . "1.2.0"))
 
 (defcustom cider-babashka-parameters
-  "nrepl-server"
+  "nrepl-server :0"
   "Params passed to babashka to start an nREPL server via `cider-jack-in'."
   :type 'string
   :safe #'stringp



reply via email to

[Prev in Thread] Current Thread [Next in Thread]