We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8c5ad8 commit f0d669cCopy full SHA for f0d669c
1 file changed
.github/workflows/ci.yaml
@@ -11,7 +11,9 @@ jobs:
11
uses: actions/checkout@v4
12
13
- name: Install dependencies
14
- run: sudo apt update && sudo apt install libboost-system-dev
+ run: |
15
+ sudo apt update && sudo apt install libboost-system-dev
16
+ bash < <(curl -s https://raw.githubusercontent.com/babashka/babashka/master/install)
17
18
- name: Install jank
19
run: |
@@ -20,11 +22,6 @@ jobs:
20
22
sudo apt update
21
23
sudo apt install -y jank
24
- - name: Build library
- run: |
25
- cmake -Bbuild
26
- cmake --build build
27
-
28
- name: Load jank code
29
30
- echo "(require 'nrepl-server.core)" | jank -Isrc/cpp/ -Lbuild/ -lnrepl_server -L/usr/lib/x86_64-linux-gnu/ repl --module-path src/jank/
+ echo "(require 'nrepl_server.core) (println \"ok\")" | bb run repl | grep ok
0 commit comments