Skip to content

Commit

Permalink
Adds a .NET 9 SDK setup action to linters (#88988) (#4802)
Browse files Browse the repository at this point in the history
OpenDream was recently bumped to .NET 9, which is not on our runner
image. I added an action which installs the required .NET version for
DMCompiler to function.

Adding this action is not only good as a quick hack fix, but also for
posterity.
I also considered the impact this has on our runner execution time, but
my hope is that it should not matter if we have .NET installed already.

Co-authored-by: Ivory <distributivgesetz93@gmail.com>
  • Loading branch information
Absolucy and distributivgesetz authored Jan 9, 2025
1 parent eb67e28 commit f134d6b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ jobs:
key: ${{ runner.os }}-rust-${{ hashFiles('tools/ci/ci_dependencies.sh')}}
restore-keys: |
${{ runner.os }}-rust-
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4.2.0
with:
dotnet-version: 9.x
- name: Install OpenDream
uses: robinraju/release-downloader@v1.9
with:
Expand Down

0 comments on commit f134d6b

Please # to comment.