mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-08-20 07:35:10 +00:00
Diagnostic information
This commit is contained in:
parent
4e86def5ff
commit
b7f3cf0b3c
16
.github/workflows/workflow.yml
vendored
16
.github/workflows/workflow.yml
vendored
@ -40,10 +40,16 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Clear tool cache
|
- name: Clear tool cache
|
||||||
if: runner.os != 'windows'
|
if: runner.os != 'windows'
|
||||||
run: rm -rf "$HOME/.dotnet"
|
run: |
|
||||||
|
echo $PATH
|
||||||
|
dotnet --info
|
||||||
|
rm -rf "$HOME/.dotnet"
|
||||||
- name: Clear tool cache (Windows)
|
- name: Clear tool cache (Windows)
|
||||||
if: runner.os == '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
|
- name: Setup dotnet 3.1.201
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
@ -57,9 +63,9 @@ jobs:
|
|||||||
|
|
||||||
test-proxy:
|
test-proxy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
# container:
|
||||||
image: mcr.microsoft.com/dotnet/core/runtime-deps:3.0-bionic
|
# image: mcr.microsoft.com/dotnet/core/runtime-deps:3.0-bionic
|
||||||
options: --dns 127.0.0.1
|
# options: --dns 127.0.0.1
|
||||||
services:
|
services:
|
||||||
squid-proxy:
|
squid-proxy:
|
||||||
image: datadog/squid:latest
|
image: datadog/squid:latest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user