mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-25 12:53:06 +07:00
Move e2e test to appropriate workflow
This commit is contained in:
parent
b995d232e6
commit
f44ad15e92
28
.github/workflows/e2e-tests.yml
vendored
28
.github/workflows/e2e-tests.yml
vendored
@ -481,3 +481,31 @@ jobs:
|
|||||||
- name: Verify dotnet (higher version)
|
- name: Verify dotnet (higher version)
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: __tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.lower-version }}$", "^${{ matrix.higher-version }}$"
|
run: __tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.lower-version }}$", "^${{ matrix.higher-version }}$"
|
||||||
|
|
||||||
|
test-version-already-installed:
|
||||||
|
runs-on: ${{ matrix.operating-system }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Clear toolcache
|
||||||
|
shell: pwsh
|
||||||
|
run: __tests__/clear-toolcache.sh ${{ runner.os }}
|
||||||
|
- name: Setup dotnet (first)
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
dotnet-version: '6.0'
|
||||||
|
- name: Verify dotnet (first)
|
||||||
|
shell: pwsh
|
||||||
|
run: __tests__/verify-dotnet.ps1 -Patterns "^6.0"
|
||||||
|
- name: Setup dotnet (same major, any minor)
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
dotnet-version: '6.x'
|
||||||
|
prefer-installed: true
|
||||||
|
- name: Verify dotnet (same major, any minor)
|
||||||
|
shell: pwsh
|
||||||
|
run: __tests__/verify-dotnet.ps1 -Patterns "^6.0"
|
||||||
|
62
.github/workflows/test-dotnet.yml
vendored
62
.github/workflows/test-dotnet.yml
vendored
@ -12,78 +12,24 @@ on:
|
|||||||
- '**.md'
|
- '**.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-installed:
|
|
||||||
runs-on: 'windows-latest'
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Clear toolcache
|
|
||||||
shell: pwsh
|
|
||||||
run: dotnet --list-sdks
|
|
||||||
setup-version:
|
setup-version:
|
||||||
runs-on: ${{ matrix.operating-system }}
|
runs-on: ${{ matrix.operating-system }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
dotnet-version:
|
dotnet-version: ['2.1', '2.2', '3.0', '3.1', '5.0', '6.0', '7.0', '8.0']
|
||||||
[
|
|
||||||
['2.1', '2.x'],
|
|
||||||
['2.2', '2.x'],
|
|
||||||
['3.0', '3.x'],
|
|
||||||
['3.1', '3.x'],
|
|
||||||
['5.0', '5.x'],
|
|
||||||
['6.0', '6.x'],
|
|
||||||
['7.0', '7.x'],
|
|
||||||
['8.0', '8.x']
|
|
||||||
]
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Clear toolcache
|
- name: Clear toolcache
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
||||||
- name: Setup dotnet ${{ matrix.dotnet-version[0] }}
|
- name: Setup dotnet ${{ matrix.dotnet-version }}
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
dotnet-version: ${{ matrix.dotnet-version[0] }}
|
dotnet-version: ${{ matrix.dotnet-version }}
|
||||||
- name: Verify installed version
|
- name: Verify installed version
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version[0] }}"
|
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version }}"
|
||||||
- name: List installed versions
|
|
||||||
shell: pwsh
|
|
||||||
run: dotnet --list-sdks
|
|
||||||
- name: Run setup again with prefer installed option
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
dotnet-version: ${{ matrix.dotnet-version[1] }}
|
|
||||||
prefer-installed: true
|
|
||||||
- name: Verify installed version
|
|
||||||
shell: pwsh
|
|
||||||
run: |
|
|
||||||
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version[0] }}"
|
|
||||||
- name: List installed versions
|
|
||||||
shell: pwsh
|
|
||||||
run: dotnet --list-sdks
|
|
||||||
setup-version-already-installed:
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Clear toolcache
|
|
||||||
shell: pwsh
|
|
||||||
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
|
||||||
- name: Setup dotnet 6.0
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
dotnet-version: '6.0'
|
|
||||||
prefer-installed: true
|
|
||||||
- name: Verify installed version
|
|
||||||
shell: pwsh
|
|
||||||
run: |
|
|
||||||
__tests__/verify-dotnet.ps1 -Patterns "^6.0"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user