Skip to content

Commit

Permalink
Merge pull request #29 from Geekdude/patch-1
Browse files Browse the repository at this point in the history
CI AMD: Verify proxy variable is exported.
  • Loading branch information
Geekdude authored Feb 14, 2024
2 parents ec6d898 + e0a9056 commit 3c9e978
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci-gpu-AMD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@ jobs:
steps:
# Verify Environment
- name: Verify Environment https_proxy.
run: echo $https_proxy
run: |
echo $https_proxy
export -p | grep https_proxy
- name: Verify Environment http_proxy.
run: echo $http_proxy
run: |
echo $http_proxy
export -p | grep http_proxy
# Only trigger CI for certain "actors" (those commenting the PR, not the PR originator)
- name: Verify actor
Expand Down

0 comments on commit 3c9e978

Please sign in to comment.