Skip to content
This repository was archived by the owner on Jun 14, 2023. It is now read-only.

Commit 4c9f8d5

Browse files
author
Felix Schütt
committed
Use git binary for fetching dependencies in CI
1 parent eb0877c commit 4c9f8d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ jobs:
7979
# that are needed during the build process. Additionally, this works
8080
# around a bug in the 'cache' action that causes directories outside of
8181
# the workspace dir to be saved/restored incorrectly.
82-
run: echo "CARGO_HOME=$(pwd)/.cargo_home" >> $GITHUB_ENV
82+
run: |
83+
echo "CARGO_HOME=$(pwd)/.cargo_home" >> $GITHUB_ENV
84+
echo "CARGO_NET_GIT_FETCH_WITH_CLI=true" >> $GITHUB_ENV
8385
# - name: Install sccache
8486
# run: |
8587
# echo "::add-path::${{ runner.tool_cache }}/cargo-sccache/bin"

0 commit comments

Comments
 (0)