Skip to content

Commit

Permalink
Merge pull request #749 from hzhuang1/fix_tipi
Browse files Browse the repository at this point in the history
ci: fix tipi build error on github CI workflow
  • Loading branch information
Cyan4973 committed Oct 19, 2022
2 parents 43ea6fd + 058a465 commit 2de0fd6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -554,7 +554,14 @@ jobs:

steps:
- uses: actions/checkout@v2
- run: mkdir -p ~/.tipi
# FIX: we currently need a full clone
with:
fetch-depth: '0'
- run: |
mkdir -p /usr/local/share/.tipi
# FIX: Hack for github action
git config --global --add safe.directory /usr/local/share/.tipi
git config --global --add safe.directory /__w/xxHash/xxHash/
# checking if the xxHash project builds and passes tests
- name: Build as project target linux-cxx17 (run test multiInclude)
Expand Down

0 comments on commit 2de0fd6

Please sign in to comment.