| |
---|
| | { |
---|
| | return Json([ |
---|
| | "name": "DUB Build " ~ buildType.capitalize ~ " " ~ arch.Json, |
---|
| | "cmd": ["dub", "build", "--build=" ~ buildType, "--arch=" ~ arch].map!Json.array.Json, |
---|
| | |
---|
| | "file_regex": r"^(.+)\(([0-9]+)\)\:() (.*)$".Json, |
---|
| | "working_dir": workingDiretory.Json, |
---|
| | "variants": [ |
---|
| | [ |
---|
| | "name": "Run".Json, |
---|
| |
---|
| | |
---|
| | buildSystems ~= [ |
---|
| | "name": "DUB Test " ~ arch.Json, |
---|
| | "cmd": ["dub", "test", "--arch=" ~ arch].map!Json.array.Json, |
---|
| | "file_regex": r"^(.+)\(([0-9]+)\)\:() (.*)$".Json, |
---|
| | "working_dir": workingDiretory.Json, |
---|
| | ].Json; |
---|
| | |
---|
| | return buildSystems.array.Json; |
---|
| |
---|
| | |
|