Skip to content

Commit

Permalink
Add git/curl verbosity for checkout steps (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajschmidt8 authored Dec 18, 2023
1 parent e7ebbae commit c5de907
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-in-devcontainer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:
runs-on: "linux-${{ matrix.arch }}-${{ inputs.node_type }}"
steps:
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
- name: Get PR Info
id: get-pr-info
uses: rapidsai/shared-actions/get-pr-info@main
Expand All @@ -59,6 +63,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
fetch-depth: 0
- name: Get PR Info
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/conda-cpp-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}
role-duration-seconds: 43200 # 12h
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/conda-cpp-post-build-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}
role-duration-seconds: 43200 # 12h
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand All @@ -72,6 +76,10 @@ jobs:
echo "RAPIDS_EXTRACTED_DIR=${EXTRACTED_DIR}" >> "${GITHUB_ENV}"
- name: Get weak detection tool
uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: rapidsai/detect-weak-linking
ref: refs/heads/main
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/conda-cpp-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}
role-duration-seconds: 43200 # 12h
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/conda-python-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}
role-duration-seconds: 43200 # 12h
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/conda-python-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}
role-duration-seconds: 43200 # 12h
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/conda-upload-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}
role-duration-seconds: 43200 # 12h
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/custom-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}
role-duration-seconds: 43200 # 12h
- uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/wheels-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ jobs:
role-duration-seconds: 43200 # 12h
- name: checkout code repo
uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand All @@ -154,6 +158,10 @@ jobs:
- name: checkout extra repos
uses: actions/checkout@v3
if: ${{ inputs.extra-repo != '' }}
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.extra-repo }}
ref: ${{ inputs.extra-repo-sha }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/wheels-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ jobs:
role-duration-seconds: 43200 # 12h
- name: checkout code repo
uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/wheels-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ jobs:

- name: checkout code repo
uses: actions/checkout@v3
env:
GIT_TRACE_PACKET: 1
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
repository: ${{ inputs.repo }}
ref: ${{ inputs.sha }}
Expand Down

0 comments on commit c5de907

Please sign in to comment.