mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-18 03:21:13 +01:00
Add dreamchecker to build chain (#16464)
* Change + changelog * Update .gitignore Co-authored-by: Llywelwyn <82828093+Llywelwyn@users.noreply.github.com> --------- Co-authored-by: Llywelwyn <82828093+Llywelwyn@users.noreply.github.com>
This commit is contained in:
+4
-2
@@ -16,5 +16,7 @@ __pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
/.atom-build.json
|
||||
.vscode/
|
||||
.vs/
|
||||
.vscode/*
|
||||
!.vscode/launch.json
|
||||
!.vscode/tasks.json
|
||||
.vs/
|
||||
|
||||
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "byond",
|
||||
"request": "launch",
|
||||
"name": "Launch DreamSeeker",
|
||||
"preLaunchTask": "dm: build - ${command:CurrentDME}",
|
||||
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
|
||||
}
|
||||
]
|
||||
}
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "shell",
|
||||
"command": "tools/dreamchecker/dreamchecker",
|
||||
"windows": {
|
||||
"command": ".\\tools\\dreamchecker\\dreamchecker.bat \".\\tools\\dreamchecker\\dreamchecker.exe\"",
|
||||
"echo": "false"
|
||||
},
|
||||
"group": "build",
|
||||
"label": "dreamchecker"
|
||||
},
|
||||
{
|
||||
"type": "dreammaker",
|
||||
"dme": "aurorastation.dme",
|
||||
"problemMatcher": [
|
||||
"$dreammaker"
|
||||
],
|
||||
"group": "build",
|
||||
"label": "dm: build - aurorastation.dme",
|
||||
"dependsOrder": "sequence",
|
||||
"dependsOn": [
|
||||
"dreamchecker"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
################################
|
||||
# Example Changelog File
|
||||
#
|
||||
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||
#
|
||||
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||
# When it is, any changes listed below will disappear.
|
||||
#
|
||||
# Valid Prefixes:
|
||||
# bugfix
|
||||
# wip (For works in progress)
|
||||
# tweak
|
||||
# soundadd
|
||||
# sounddel
|
||||
# rscadd (general adding of nice things)
|
||||
# rscdel (general deleting of nice things)
|
||||
# imageadd
|
||||
# imagedel
|
||||
# maptweak
|
||||
# spellcheck (typo fixes)
|
||||
# experiment
|
||||
# balance
|
||||
# admin
|
||||
# backend
|
||||
# security
|
||||
# refactor
|
||||
#################################
|
||||
|
||||
# Your name.
|
||||
author: FluffyGhost
|
||||
|
||||
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||
delete-after: True
|
||||
|
||||
# Any changes you've made. See valid prefix list above.
|
||||
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||
# SCREW THIS UP AND IT WON'T WORK.
|
||||
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
|
||||
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
|
||||
changes:
|
||||
- backend: "Added dreamchecker 1.7.3 to the source tree, with a wrapper script, that gets triggered on build (F5)."
|
||||
- backend: "Unignored the .vscode folder to allow the aforementioned."
|
||||
@@ -0,0 +1,16 @@
|
||||
@ECHO OFF
|
||||
REM Check if an argument is provided
|
||||
IF "%~1"=="" (
|
||||
echo Provide a path to dreamchecker.exe!
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
set executable="%~1"
|
||||
|
||||
REM Call the executable
|
||||
%executable%
|
||||
|
||||
REM Check the exit value
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
exit /b %ERRORLEVEL%
|
||||
)
|
||||
Binary file not shown.
Reference in New Issue
Block a user