Skip to content

Commit

Permalink
meh
Browse files Browse the repository at this point in the history
  • Loading branch information
feisuzhu committed Dec 18, 2024
1 parent bd9a4a7 commit 1faca33
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,11 @@ jobs:
-DTI_WITH_C_API=ON
-DTI_BUILD_TESTS:BOOL=${{ matrix.with_cpp_tests }}
steps:
- name: Workaround checkout Needed single revision issue
run: git submodule foreach 'git rev-parse HEAD > /dev/null 2>&1 || rm -rf $PWD' || true
- name: Workaround checkout issues
run: |
. .github/workflows/scripts/common-utils.sh
git submodule foreach 'git rev-parse HEAD > /dev/null 2>&1 || rm -rf $PWD' || true
unset-git-caching-proxy
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -368,10 +371,12 @@ jobs:
TI_RUN_RELEASE_TESTS: '1'

steps:
- name: Workaround checkout Needed single revision issue
- name: Workaround checkout issues
run: |
. .github/workflows/scripts/common-utils.ps1
git config --system core.longpaths true
git submodule foreach 'git rev-parse HEAD > /dev/null 2>&1 || rm -rf $PWD' # no '|| true' here
UnsetGitCachingProxy
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 1faca33

Please sign in to comment.