Skip to content

Commit

Permalink
chore: add git config to all test types
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruzda-splunk committed Feb 22, 2024
1 parent 93809d4 commit bc9ae7c
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/reusable-build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1300,6 +1300,13 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: configure git
id: configure-git
run: |
git --version
git_path=$(pwd)
echo $git_path
git config --global --add safe.directory "$git_path"
- name: capture start time
id: capture-start-time
run: |
Expand Down Expand Up @@ -1522,6 +1529,13 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: configure git
id: configure-git
run: |
git --version
git_path=$(pwd)
echo $git_path
git config --global --add safe.directory "$git_path"
- name: capture start time
id: capture-start-time
run: |
Expand Down Expand Up @@ -1751,6 +1765,13 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: configure git
id: configure-git
run: |
git --version
git_path=$(pwd)
echo $git_path
git config --global --add safe.directory "$git_path"
- name: capture start time
id: capture-start-time
run: |
Expand Down Expand Up @@ -1989,6 +2010,13 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: configure git
id: configure-git
run: |
git --version
git_path=$(pwd)
echo $git_path
git config --global --add safe.directory "$git_path"
- name: capture start time
id: capture-start-time
run: |
Expand Down Expand Up @@ -2218,6 +2246,13 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: configure git
id: configure-git
run: |
git --version
git_path=$(pwd)
echo $git_path
git config --global --add safe.directory "$git_path"
- name: capture start time
id: capture-start-time
run: |
Expand Down Expand Up @@ -2454,6 +2489,13 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: configure git
id: configure-git
run: |
git --version
git_path=$(pwd)
echo $git_path
git config --global --add safe.directory "$git_path"
- name: capture start time
id: capture-start-time
run: |
Expand Down

0 comments on commit bc9ae7c

Please sign in to comment.