fix: Disable git unsafe directory checks.

* git directory safety checks cause issues for CI, so disabling them.
This commit is contained in:
Peter Johanson 2022-10-08 03:26:35 -04:00 committed by Pete Johanson
parent 2f5fa1a7e9
commit a3c3bca1c9

View File

@ -356,6 +356,8 @@ jobs:
- name: Create and run container from 'build' candidate image - name: Create and run container from 'build' candidate image
shell: bash shell: bash
run: docker run -d -it --name candidate ${{ env.docker-args }} ${{ steps.paths.outputs.build-candidate }} run: docker run -d -it --name candidate ${{ env.docker-args }} ${{ steps.paths.outputs.build-candidate }}
- name: Fixes for git safety checks
run: git config --global --add safe.directory '*'
- name: Test cmake - name: Test cmake
run: cmake --version run: cmake --version
- name: Test python - name: Test python