CI fix
Some checks failed
🏗️ Build Plugin / build (push) Failing after 9s
🧪 Test Plugin / test (push) Failing after 11s

This commit is contained in:
Duncan Tourolle 2025-11-14 20:43:09 +01:00
parent eb6bfad0d2
commit 24ed1de959
3 changed files with 9 additions and 9 deletions

View File

@ -25,13 +25,13 @@ jobs:
run: dotnet --version
- name: Restore dependencies
run: dotnet restore
run: dotnet restore Jellyfin.Plugin.SRFPlay.sln
- name: Build solution
run: dotnet build --configuration Release --no-restore
run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-build --configuration Release --verbosity normal
run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Release --verbosity normal
- name: Install JPRM
run: |

View File

@ -41,13 +41,13 @@ jobs:
cat build.yaml
- name: Restore dependencies
run: dotnet restore
run: dotnet restore Jellyfin.Plugin.SRFPlay.sln
- name: Build solution
run: dotnet build --configuration Release --no-restore
run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-build --configuration Release --verbosity normal
run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Release --verbosity normal
- name: Install JPRM
run: |

View File

@ -27,13 +27,13 @@ jobs:
run: dotnet --version
- name: Restore dependencies
run: dotnet restore
run: dotnet restore Jellyfin.Plugin.SRFPlay.sln
- name: Build solution
run: dotnet build --configuration Debug --no-restore
run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Debug --no-restore
- name: Run tests
run: dotnet test --no-build --configuration Debug --verbosity normal --logger "trx;LogFileName=test-results.trx"
run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Debug --verbosity normal --logger "trx;LogFileName=test-results.trx"
- name: Upload test results
if: always()