It's now possible to use the install script from the babashka repo in Windows Git Bash. E.g. do this on Github Actions when you want to replace the installed bb from setup-clojure with the dev build:
- name: 🔧 Install clojure
uses: DeLaGuardo/setup-clojure@master
with:
bb: latest
- name: 🗝 maven cache
uses: actions/cache@v3
with:
path: |
~/.m2
~/.gitlibs
~/.deps.clj
key: ${{ runner.os }}-maven-test-${{ hashFiles('deps.edn') }}-${{ hashFiles('bb.edn') }}
- name: 🔧 Install bb from dev build (until next release)
shell: bash
run: |
curl -sLO
chmod +x ./install
./install --dev-build --dir /tmp
cp /tmp/bb "$(which bb)" The install script now also supports FreeBSD!
Hello. I just released a babashka version that's supposed to be compatible with #clerk's main branch (or vice versa...) https://clojurians.slack.com/archives/C015AL9QYH1/p1750773237802299 Anyone wants to give it a spin before we announce clerk compatibility more widely?