Skip to content

Commit 6ad9077

Browse files
authored
Merge pull request #187 from ikappaki/issue/win-int-test-deps-download
workaround for failing to download deps during win int testing
2 parents df5adea + 3cfe8c7 commit 6ad9077

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,13 @@ jobs:
7979
bb: '1.12.200'
8080

8181
- name: Generate embedded binary
82-
run: bb prod-cli
82+
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
8389
8490
- name: Run integration tests
8591
run: bb integration-test

0 commit comments

Comments
 (0)