babashka

borkdude 2025-06-24T09:10:16.818329Z

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)"

💯 4
🎉 2
borkdude 2025-07-02T20:23:46.657839Z

The install script now also supports FreeBSD!

🔥 5
😈 4
borkdude 2025-06-24T13:55:26.200039Z

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?

😎 4