Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor opendream run and pin dotnet for it #20345

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading