aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2024-11-16 11:01:32 -0700
committerGitHub <noreply@github.com>2024-11-16 19:01:32 +0100
commit9e05abcc850c0c41818042d4383c621f54a6e40f (patch)
tree910ca7a4fca6a46895ea2ffbb55f245c809b91d8 /.github
parentceb850c77052c465af8422dcf152f1d1d1530457 (diff)
Add dotnet9 to abi compat workflow (#13046)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-compat.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci-compat.yml b/.github/workflows/ci-compat.yml
index c9d9f8449..2f9a68f41 100644
--- a/.github/workflows/ci-compat.yml
+++ b/.github/workflows/ci-compat.yml
@@ -16,6 +16,11 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
+ - name: Setup .NET
+ uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0
+ with:
+ dotnet-version: '9.0.x'
+
- name: Build
run: |
dotnet build Jellyfin.Server -o ./out
@@ -41,6 +46,11 @@ jobs:
repository: ${{ github.event.pull_request.head.repo.full_name }}
fetch-depth: 0
+ - name: Setup .NET
+ uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0
+ with:
+ dotnet-version: '9.0.x'
+
- name: Checkout common ancestor
env:
HEAD_REF: ${{ github.head_ref }}