Skip to content

Commit 8e1fe56

Browse files
committed
Mark repo safe to fix MinVer warning
1 parent 2da1e0e commit 8e1fe56

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,7 @@ jobs:
8585
run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
8686
- name: Run ${{ matrix.tfm }} tests
8787
run: |
88+
git_command="git config --global --add safe.directory /app"
8889
test_command="dotnet test LibGit2Sharp.sln --configuration Release -p:TargetFrameworks=${{ matrix.tfm }} --logger "GitHubActions" -p:ExtraDefine=LEAKS_IDENTIFYING"
89-
docker run -t --rm --platform linux/${{ matrix.arch }} -v "$PWD:/app" gittools/build-images:${{ matrix.distro }}-sdk-${{ matrix.sdk }} sh -c "$test_command"
90+
docker run -t --rm --platform linux/${{ matrix.arch }} -v "$PWD:/app" gittools/build-images:${{ matrix.distro }}-sdk-${{ matrix.sdk }} sh -c "$git_command && $test_command"
91+

0 commit comments

Comments
 (0)