Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 9 additions & 3 deletions .github/workflows/compile_changelogs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,26 @@ jobs:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Work around setup-python cache issue
# see https://github.com/actions/setup-python/issues/807
if: hashFiles('**/requirements.txt', '**/pyproject.toml') == ''
shell: bash
run: touch requirements.txt
- name: "Setup python"
if: steps.value_holder.outputs.ACTIONS_ENABLED
uses: actions/setup-python@v3
uses: actions/setup-python@v6
with:
python-version: '3.x'
cache: 'pip'
- name: "Install deps"
if: steps.value_holder.outputs.ACTIONS_ENABLED
run: |
python -m pip install --upgrade pip
python -m pip install pyyaml
sudo apt-get install dos2unix
sudo apt-get install dos2unix
- name: "Checkout"
if: steps.value_holder.outputs.ACTIONS_ENABLED
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 25
persist-credentials: false
Expand Down
106 changes: 106 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,119 @@
"preLaunchTask": "Build All",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map)",
"preLaunchTask": "Build All (runtime map)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (quickstart)",
"preLaunchTask": "Build All (quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (testing)",
"preLaunchTask": "Build All (testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map + quickstart)",
"preLaunchTask": "Build All (runtime map + quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map + testing)",
"preLaunchTask": "Build All (runtime map + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (quickstart + testing)",
"preLaunchTask": "Build All (quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map + quickstart + testing)",
"preLaunchTask": "Build All (runtime map + quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon",
"preLaunchTask": "Build All",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map)",
"preLaunchTask": "Build All (runtime map)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (quickstart)",
"preLaunchTask": "Build All (quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true

},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (testing)",
"preLaunchTask": "Build All (testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map + quickstart)",
"preLaunchTask": "Build All (runtime map + quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map + testing)",
"preLaunchTask": "Build All (runtime map + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (quickstart + testing)",
"preLaunchTask": "Build All (quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map + quickstart + testing)",
"preLaunchTask": "Build All (runtime map + quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
}
]
}
190 changes: 166 additions & 24 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"tasks": [
{
"type": "process",
"command": "tools/build/build",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat"
},
Expand All @@ -25,70 +25,212 @@
"label": "Build All"
},
{
"type": "dreammaker",
"dme": "colonialmarines.dme",
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker"
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "dm: build - colonialmarines.dme"
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map)"
},
{
"command": "${command:dreammaker.reparse}",
"group": "build",
"label": "dm: reparse"
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (quickstart)"
},
{
"type": "shell",
"command": "bin/tgui-build",
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\bin\\tgui-build.cmd"
"command": ".\\tools\\build\\build.bat",
"args": ["-DTESTING"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "tgui: build"
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (testing)"
},
{
"type": "shell",
"command": "bin/tgui-dev",
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\bin\\tgui-dev.cmd"
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP", "-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map + quickstart)"
},
{
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DTESTING", "-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (quickstart + quickstart)"
},
{
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP", "-DTESTING"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map + testing)"
},
{
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP", "-DTESTING", "-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map + quickstart + testing)"
},
{
"type": "dreammaker",
"dme": "colonialmarines.dme",
"problemMatcher": [
"$dreammaker"
],
"group": "build",
"label": "tgui: dev server"
"label": "dm: build - colonialmarines.dme"
},
{
"command": "${command:dreammaker.reparse}",
"group": "build",
"label": "dm: reparse"
},
{
"type": "shell",
"command": "bin/tgui-bench",
"command": "bin/tgui-build",
"windows": {
"command": ".\\bin\\tgui-bench.cmd"
"command": ".\\bin\\tgui-build.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "tgui: bench"
"label": "tgui: build"
},
{
"type": "shell",
"command": "bin/tgui-sonar",
"command": "bin/tgui-dev",
"windows": {
"command": ".\\bin\\tgui-sonar.cmd"
"command": ".\\bin\\tgui-dev.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "tgui: sonar"
"label": "tgui: dev server"
},
{
"type": "shell",
Expand Down
Loading
Loading