Skip to content

Commit

Permalink
Diagnostic information
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Eisinger committed Aug 10, 2020
1 parent 4e86def commit 6190d3b
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,18 @@ jobs:
uses: actions/checkout@v2
- name: Clear tool cache
if: runner.os != 'windows'
run: rm -rf "$HOME/.dotnet"
run: |
ls "$HOME/.dotnet"
echo $PATH
dotnet --info
rm -rf "$HOME/.dotnet"
- name: Clear tool cache (Windows)
if: runner.os == 'windows'
run: Remove-Item $env:LocalAppData\Microsoft\dotnet/* -Recurse -Force -ErrorAction SilentlyContinue
run: |
ls $env:LocalAppData\Microsoft\dotnet
echo $env:PATH
dotnet --info
Remove-Item $env:LocalAppData\Microsoft\dotnet/* -Recurse -Force -ErrorAction SilentlyContinue
- name: Setup dotnet 3.1.201
uses: ./
with:
Expand All @@ -57,9 +65,9 @@ jobs:

test-proxy:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/core/runtime-deps:3.0-bionic
options: --dns 127.0.0.1
# container:
# image: mcr.microsoft.com/dotnet/core/runtime-deps:3.0-bionic
# options: --dns 127.0.0.1
services:
squid-proxy:
image: datadog/squid:latest
Expand Down

0 comments on commit 6190d3b

Please sign in to comment.