Skip to content

Commit

Permalink
Ian/fix remill git checkout ci (#600)
Browse files Browse the repository at this point in the history
* allow git directories before running ci tasks as workaround for permissions issue
  • Loading branch information
2over12 authored Jun 8, 2022
1 parent 81478b4 commit 43cfa8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Build with build script
shell: bash
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
sudo apt-get update && sudo apt-get install g++-8
./scripts/build.sh --llvm-version ${{ matrix.llvm }}
- name: Build with build-presets script
Expand Down Expand Up @@ -104,7 +104,9 @@ jobs:
fetch-depth: 0
- name: Build with build script
shell: bash
run: ./scripts/build.sh --llvm-version ${{ matrix.llvm }}
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
./scripts/build.sh --llvm-version ${{ matrix.llvm }}
- name: Build with build-presets script
shell: bash
run: |
Expand Down

0 comments on commit 43cfa8c

Please sign in to comment.