From b7f3cf0b3c60f429fa3fec27836480a2c51b6e64 Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Mon, 10 Aug 2020 10:15:42 -0700 Subject: [PATCH] Diagnostic information --- .github/workflows/workflow.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index c917579..0701732 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -40,10 +40,16 @@ jobs: uses: actions/checkout@v2 - name: Clear tool cache if: runner.os != 'windows' - run: rm -rf "$HOME/.dotnet" + run: | + 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: | + echo $env:PATH + dotnet --info + Remove-Item $env:LocalAppData\Microsoft\dotnet/* -Recurse -Force -ErrorAction SilentlyContinue - name: Setup dotnet 3.1.201 uses: ./ with: @@ -57,9 +63,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