mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
33f5ab983d
* Restricted Linux CI build to only run on changes to code, translations, software lists, and build scripts. * Restricted Windows/macOS CO to only run on changes to code and build scripts. They provide nothing over Linux for the other stuff. * Added plugin properties and controller file validation to the "hash" workflow. * Added a workflow for building documentation, so pull requests that affect documentation will at least get a basic check in advance. -plugins/autofire: Bumped version as configuration format has changed.
35 lines
655 B
Text
35 lines
655 B
Text
{
|
|
"type": "object",
|
|
"properties": {
|
|
"plugin": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"pattern": "^[A-Za-z][0-9A-Za-z_]*$"
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"version": {
|
|
"type": "string"
|
|
},
|
|
"author": {
|
|
"type": "string"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"pattern": "^(plugin|library)$"
|
|
},
|
|
"start": {
|
|
"type": "string",
|
|
"pattern": "^(true|false)$"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [ "name", "description", "version", "author", "type" ]
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [ "plugin" ]
|
|
}
|