Skip to content

Commit

Permalink
Refactor opendream run and pin dotnet for it (#20345)
Browse files Browse the repository at this point in the history
No player visible changes
  • Loading branch information
FluffyGhoster authored Jan 9, 2025
1 parent 29c7d7f commit a3ee081
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/byond.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,23 @@ jobs:
- name: Set ENV variables
run: bash dependencies.sh

- name: Download OpenDream Compiler
#Setup the .NET dependency to what is needed by OpenDream
- name: Setup DotNet Dependency
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.100

#Prepare the precompiled OpenDream compiler
- name: Prepare OpenDream Compiler
run: |
bash tools/ci/install_od.sh
cd $HOME
wget -v https://github.com/OpenDreamProject/OpenDream/releases/download/latest/DMCompiler_linux-x64.tar.gz
tar -xf DMCompiler_linux-x64.tar.gz
#Run OpenDream on the DME
- name: Run OpenDream
run: |
tools/ci/run_od.sh
dotnet $HOME/DMCompiler_linux-x64/DMCompiler.dll --suppress-unimplemented aurorastation.dme
###########################################
############### TGUI LINTING ##############
Expand Down
10 changes: 0 additions & 10 deletions tools/ci/install_od.sh

This file was deleted.

3 changes: 0 additions & 3 deletions tools/ci/run_od.sh

This file was deleted.

0 comments on commit a3ee081

Please sign in to comment.