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.
1 parent 73dbc10 commit 0da300bCopy full SHA for 0da300b
1 file changed
.github/workflows/main.yml
@@ -289,6 +289,11 @@ jobs:
289
alpine:latest \
290
tail -f /dev/null
291
docker exec alpine sh -c "apk update && apk add --no-cache git gcc g++ make cmake sqlite musl-dev linux-headers python3 curl-dev openssl-dev zlib-dev"
292
+ # Tell git inside the container that the bind-mounted workspace is
293
+ # safe — git runs as root in the container while the files are
294
+ # owned by the runner user, which trips git's "dubious ownership"
295
+ # check.
296
+ docker exec alpine git config --global --add safe.directory '*'
297
298
- name: linux install opencl
299
if: matrix.name == 'linux-gpu'
0 commit comments