mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-22 19:41:08 +07:00
Debug
This commit is contained in:
parent
1317beb53a
commit
054db1cac2
18
.github/workflows/workflow.yml
vendored
18
.github/workflows/workflow.yml
vendored
@ -64,11 +64,12 @@ jobs:
|
||||
run: |
|
||||
if (-Not (Test-Path "../nuget.config")) { throw "nuget file not generated correctly" }
|
||||
- name: Verify dotnet
|
||||
if: runner.os != 'windows'
|
||||
run: __tests__/verify-dotnet.sh 3.1.201 2.2.402
|
||||
- name: Verify dotnet (Windows)
|
||||
if: runner.os == 'windows'
|
||||
# if: runner.os != 'windows'
|
||||
shell: pwsh
|
||||
run: __tests__/verify-dotnet.ps1 3.1.201 2.2.402
|
||||
# - name: Verify dotnet (Windows)
|
||||
# if: runner.os == 'windows'
|
||||
# run: __tests__/verify-dotnet.ps1 3.1.201 2.2.402
|
||||
|
||||
test-setup-without-patch-version:
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
@ -88,11 +89,12 @@ jobs:
|
||||
with:
|
||||
dotnet-version: '3.1'
|
||||
- name: Verify dotnet
|
||||
if: runner.os != 'windows'
|
||||
run: __tests__/verify-dotnet.sh 3.1
|
||||
- name: Verify dotnet (Windows)
|
||||
if: runner.os == 'windows'
|
||||
# if: runner.os != 'windows'
|
||||
shell: pwsh
|
||||
run: __tests__/verify-dotnet.ps1 3.1
|
||||
# - name: Verify dotnet (Windows)
|
||||
# if: runner.os == 'windows'
|
||||
# run: __tests__/verify-dotnet.ps1 3.1
|
||||
|
||||
test-setup-x-patch-version:
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
|
@ -3,11 +3,6 @@ if [ -z "$1" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# if [ ! -f "../nuget.config" ]; then
|
||||
# echo "nuget file not generated correctly"
|
||||
# exit 1
|
||||
# fi
|
||||
|
||||
dotnet_version="$(dotnet --version)"
|
||||
echo "Found dotnet version '$dotnet_version'"
|
||||
if [ -z "$(echo $dotnet_version | grep $1)" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user