This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-04-26
Channels
- # aleph (6)
- # announcements (1)
- # babashka (18)
- # beginners (13)
- # calva (18)
- # cider (5)
- # clojure (144)
- # clojure-europe (34)
- # clojure-nl (1)
- # clojure-norway (29)
- # clojure-uk (4)
- # emacs (9)
- # etaoin (51)
- # events (1)
- # gratitude (1)
- # hyperfiddle (9)
- # lsp (4)
- # off-topic (6)
- # pathom (61)
- # rdf (1)
- # releases (3)
- # shadow-cljs (16)
- # vrac (1)
- # yada (1)
- # yamlscript (3)
I'm working on an issue with Windows, bbin and deps.clj: https://github.com/babashka/bbin/issues/80 Unfortunately my Windows PC won't boot again (I probably need to replace the power supply...) so if anyone wants to help verify/find the problem, you're welcome
Its not caused by the fact that windows does not support symlinks ( at least not like linux ) just guessing.
the exception seems to happen when trying to relativize a file which is from a different root (which means, I think, on Windows: from a different drive, e.g. c:/dude
and d:/dude
)
also, Windows 11 and Windows 10 both support symbolic links
I read on some webpage. So the issue could be that on CI some .gitlib folder really lives on a different drive, which then causes the above problem
Perhaps someone with Windows can at least try to run the bbin tests locally to see if they get the same exception locally (with a new version of bb)
@U04V15CAJ you can run GHA tmate action in windows and shell in
thanks, I'm in. And as I was suspecting, the path here starts with /d/..
while some other stuff is on /c/..
and thus you can't relativize the path
I've fixed the problem in bb but now I'm trying to get a custom bb installed on Windows. How the heck do I add this binary to the Windows path. This fails: https://github.com/babashka/bbin/actions/runs/8852919505/job/24312593493
ok, hacked that this way: installed bb using github actions and then in shell bash under windows:
cp bb.exe "$(which bb)"
😏and confirmed that the fix fixed the issue. boy oh boy, this Windows issue took my entire day... good weekend everyone
You're very welcome. Glad I could help you a tiny bit for all the help you've given me.