Implement /tmp
and /const
var decorators on object vars for issaved()
#4091
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile Test Codebases | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Main | |
uses: actions/checkout@v2 | |
with: | |
path: main | |
- name: Setup submodule | |
run: | | |
cd main/ | |
git submodule update --init --recursive | |
- name: Pull engine updates | |
uses: space-wizards/[email protected] | |
- name: Update Engine Submodules | |
run: | | |
cd main/RobustToolbox/ | |
git submodule update --init --recursive | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.101 | |
- name: Install dependencies | |
run: dotnet restore main/OpenDream.sln | |
- name: Build | |
run: dotnet build main/OpenDream.sln --configuration Release --no-restore /m | |
- name: Compile TestGame | |
run: main\DMCompiler\bin\Release\net7.0\DMCompiler.exe main\TestGame\environment.dme | |
- name: Checkout Modified /tg/station | |
uses: actions/checkout@v2 | |
with: | |
repository: wixoaGit/tgstation | |
path: tg | |
- name: Compile Modified /tg/station | |
run: main\DMCompiler\bin\Release\net7.0\DMCompiler.exe tg\tgstation.dme | |
- name: Checkout 64-bit Paradise | |
uses: actions/checkout@v2 | |
with: | |
repository: ike709/Paradise | |
ref: rustg_64 | |
path: para | |
- name: Compile 64-bit Paradise | |
run: main\DMCompiler\bin\Release\net7.0\DMCompiler.exe para\paradise.dme |