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:
Fluffy
2023-06-21 23:12:22 +02:00
committed by GitHub
parent 379ed7fc58
commit e87c8bb91e
6 changed files with 107 additions and 2 deletions
+4 -2
View File
@@ -16,5 +16,7 @@ __pycache__/
*.py[cod]
*$py.class
/.atom-build.json
.vscode/
.vs/
.vscode/*
!.vscode/launch.json
!.vscode/tasks.json
.vs/
+15
View File
@@ -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}"
}
]
}
+30
View File
@@ -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."
+16
View File
@@ -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.