Skip to content

Commit e555488

Browse files
author
Petr Sramek
committed
disabled CI
1 parent 98c6902 commit e555488

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,23 +58,24 @@ jobs:
5858
strategy:
5959
matrix:
6060
os: [ubuntu-latest, windows-latest, macos-latest]
61+
netversion: [5, 6, 7, 8, 9]
6162

6263
runs-on: ${{ matrix.os }}
6364

6465
steps:
6566
- uses: actions/checkout@v3
66-
- name: Setup .NET 9
67+
- name: Setup .NET ${{ matrix.netversion }}
6768
uses: actions/setup-dotnet@v3
6869
with:
69-
dotnet-version: 9.x
70+
dotnet-version: ${{ matrix.netversion }}.x
7071
- uses: actions/download-artifact@v4
7172
with:
7273
name: build
7374
path: .
7475
merge-multiple: true
7576
- name: Decode Benchmark
7677
working-directory: ./benchmarks/PolylineAlgorithm.Benchmarks
77-
run: dotnet run -c Release --no-restore --no-build --framework net9.0 --runtimes net9.0 --filter '*DecodeBenchmark*'
78+
run: CI=false dotnet run -c Release --no-restore --no-build --framework net${{ matrix.netversion }}.0 --runtimes net${{ matrix.netversion }}.0 --filter '*DecodeBenchmark*'
7879
- name: Encode Benchmark
7980
working-directory: ./benchmarks/PolylineAlgorithm.Benchmarks
80-
run: dotnet run -c Release --no-restore --no-build --framework net9.0 --runtimes net9.0 --filter '*EncodeBenchmark*'
81+
run: CI=false dotnet run -c Release --no-restore --no-build --framework net${{ matrix.netversion }}.0 --runtimes net${{ matrix.netversion }}.0 --filter '*EncodeBenchmark*'

0 commit comments

Comments
 (0)