We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df5adea + 3cfe8c7 commit 6ad9077Copy full SHA for 6ad9077
.github/workflows/test.yml
@@ -79,7 +79,13 @@ jobs:
79
bb: '1.12.200'
80
81
- name: Generate embedded binary
82
- run: bb prod-cli
+ run: |
83
+ # On Windows, babashka.deps/clojure sometimes fails with
84
+ # AccessDeniedException exception when renaming temp files
85
+ # while downloading dependencies. Workaround: offload some
86
+ # of the deps download to the clojure CLI tool.
87
+ clojure -P
88
+ bb prod-cli
89
90
- name: Run integration tests
91
run: bb integration-test
0 commit comments