diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 8de1780..beba31e 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -716,48 +716,48 @@ jobs: __tests__/verify-dotnet.ps1 -Patterns "^6.0" -CheckNugetConfig test-bypass-proxy: - runs-on: ubuntu-22.04 - env: - https_proxy: http://no-such-proxy:3128 - no_proxy: github.com,dotnetcli.blob.core.windows.net,download.visualstudio.microsoft.com,api.nuget.org,dotnetcli.azureedge.net,builds.dotnet.microsoft.com,ci.dot.net - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Clear toolcache - shell: pwsh - run: __tests__/clear-toolcache.ps1 ${{ runner.os }} - - name: Setup dotnet 3.1.201 - uses: ./ - with: - dotnet-version: 3.1.201 - source-url: https://api.nuget.org/v3/index.json - env: - NUGET_AUTH_TOKEN: NOTATOKEN - - name: Verify dotnet - shell: pwsh - run: __tests__/verify-dotnet.ps1 -Patterns "^3.1.201$" -CheckNugetConfig + runs-on: ubuntu-22.04 + env: + https_proxy: http://no-such-proxy:3128 + no_proxy: github.com,dotnetcli.blob.core.windows.net,download.visualstudio.microsoft.com,api.nuget.org,dotnetcli.azureedge.net,builds.dotnet.microsoft.com,ci.dot.net + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Clear toolcache + shell: pwsh + run: __tests__/clear-toolcache.ps1 ${{ runner.os }} + - name: Setup dotnet 3.1.201 + uses: ./ + with: + dotnet-version: 3.1.201 + source-url: https://api.nuget.org/v3/index.json + env: + NUGET_AUTH_TOKEN: NOTATOKEN + - name: Verify dotnet + shell: pwsh + run: __tests__/verify-dotnet.ps1 -Patterns "^3.1.201$" -CheckNugetConfig - test-bypass-proxy-extended: - runs-on: ubuntu-latest - env: - https_proxy: http://no-such-proxy:3128 - no_proxy: github.com,dotnetcli.blob.core.windows.net,download.visualstudio.microsoft.com,api.nuget.org,dotnetcli.azureedge.net,builds.dotnet.microsoft.com,ci.dot.net - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Clear toolcache - shell: pwsh - run: __tests__/clear-toolcache.ps1 ${{ runner.os }} - - name: Setup dotnet 8.0.402 - uses: ./ - with: - dotnet-version: 8.0.402 - source-url: https://api.nuget.org/v3/index.json - env: - NUGET_AUTH_TOKEN: NOTATOKEN - - name: Verify dotnet - shell: pwsh - run: __tests__/verify-dotnet.ps1 -Patterns "^8.0.402$" -CheckNugetConfig + test-bypass-proxy-extended: + runs-on: ubuntu-latest + env: + https_proxy: http://no-such-proxy:3128 + no_proxy: github.com,dotnetcli.blob.core.windows.net,download.visualstudio.microsoft.com,api.nuget.org,dotnetcli.azureedge.net,builds.dotnet.microsoft.com,ci.dot.net + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Clear toolcache + shell: pwsh + run: __tests__/clear-toolcache.ps1 ${{ runner.os }} + - name: Setup dotnet 8.0.402 + uses: ./ + with: + dotnet-version: 8.0.402 + source-url: https://api.nuget.org/v3/index.json + env: + NUGET_AUTH_TOKEN: NOTATOKEN + - name: Verify dotnet + shell: pwsh + run: __tests__/verify-dotnet.ps1 -Patterns "^8.0.402$" -CheckNugetConfig test-sequential-version-installation: runs-on: ${{ matrix.operating-system }}