-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump Rocket.Surgery.Nuke from 0.14.3 to 0.15.0 (#456)
* Bump Nuke.Common from 5.0.2 to 5.1.1 Bumps [Nuke.Common](https://github.com/nuke-build/nuke) from 5.0.2 to 5.1.1. - [Release notes](https://github.com/nuke-build/nuke/releases) - [Changelog](https://github.com/nuke-build/nuke/blob/develop/CHANGELOG.md) - [Commits](nuke-build/nuke@5.0.2...5.1.1) Signed-off-by: dependabot[bot] <support@github.com> * Bump Rocket.Surgery.Nuke from 0.14.3 to 0.15.0 Bumps [Rocket.Surgery.Nuke](https://github.com/RocketSurgeonsGuild/Nuke) from 0.14.3 to 0.15.0. - [Release notes](https://github.com/RocketSurgeonsGuild/Nuke/releases) - [Changelog](https://github.com/RocketSurgeonsGuild/Nuke/blob/master/GitReleaseManager.yaml) - [Commits](RocketSurgeonsGuild/Nuke@v0.14.3...v0.15.0) Signed-off-by: dependabot[bot] <support@github.com> * Updated nuke Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Driscoll <david.driscoll@gmail.com>
- Loading branch information
1 parent
29be0d8
commit df7b64e
Showing
11 changed files
with
240 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,36 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"dotnet-outdated": { | ||
"version": "2.11.0", | ||
"commands": ["dotnet-outdated"] | ||
}, | ||
"gitversion.tool": { | ||
"version": "5.6.5", | ||
"commands": ["dotnet-gitversion"] | ||
}, | ||
"dotnet-reportgenerator-globaltool": { | ||
"version": "4.8.5", | ||
"commands": ["reportgenerator"] | ||
}, | ||
"nuke.globaltool": { | ||
"version": "5.0.2", | ||
"commands": ["nuke"] | ||
}, | ||
"codecov.tool": { | ||
"version": "1.12.4", | ||
"commands": ["codecov"] | ||
} | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"dotnet-outdated": { | ||
"version": "2.11.0", | ||
"commands": [ | ||
"dotnet-outdated" | ||
] | ||
}, | ||
"gitversion.tool": { | ||
"version": "5.6.8", | ||
"commands": [ | ||
"dotnet-gitversion" | ||
] | ||
}, | ||
"dotnet-reportgenerator-globaltool": { | ||
"version": "4.8.8", | ||
"commands": [ | ||
"reportgenerator" | ||
] | ||
}, | ||
"nuke.globaltool": { | ||
"version": "5.1.1", | ||
"commands": [ | ||
"nuke" | ||
] | ||
}, | ||
"codecov.tool": { | ||
"version": "1.13.0", | ||
"commands": [ | ||
"codecov" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Build Schema", | ||
"$ref": "#/definitions/build", | ||
"definitions": { | ||
"build": { | ||
"type": "object", | ||
"properties": { | ||
"Artifacts": { | ||
"type": "string", | ||
"description": "The directory where artifacts are to be dropped" | ||
}, | ||
"Configuration": { | ||
"type": "string", | ||
"description": "Configuration to build", | ||
"enum": [ | ||
"Debug", | ||
"Release" | ||
] | ||
}, | ||
"Continue": { | ||
"type": "boolean", | ||
"description": "Indicates to continue a previously failed build attempt" | ||
}, | ||
"Coverage": { | ||
"type": "string", | ||
"description": "The directory where coverage artifacts are to be dropped" | ||
}, | ||
"Help": { | ||
"type": "boolean", | ||
"description": "Shows the help text for this build assembly" | ||
}, | ||
"Host": { | ||
"type": "string", | ||
"description": "Host for execution. Default is 'automatic'", | ||
"enum": [ | ||
"AppVeyor", | ||
"AzurePipelines", | ||
"Bamboo", | ||
"Bitrise", | ||
"GitHubActions", | ||
"GitLab", | ||
"Jenkins", | ||
"SpaceAutomation", | ||
"TeamCity", | ||
"Terminal", | ||
"TravisCI" | ||
] | ||
}, | ||
"LintFiles": { | ||
"type": "array", | ||
"description": "The files to lint, if not given lints all files", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"LintProfile": { | ||
"type": "string", | ||
"description": "The profile to use for linting" | ||
}, | ||
"NoLogo": { | ||
"type": "boolean", | ||
"description": "Disables displaying the NUKE logo" | ||
}, | ||
"Plan": { | ||
"type": "boolean", | ||
"description": "Shows the execution plan (HTML)" | ||
}, | ||
"Profile": { | ||
"type": "array", | ||
"description": "Defines the profiles to load", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"Root": { | ||
"type": "string", | ||
"description": "Root directory during build execution" | ||
}, | ||
"Skip": { | ||
"type": "array", | ||
"description": "List of targets to be skipped. Empty list skips all dependencies", | ||
"items": { | ||
"type": "string", | ||
"enum": [ | ||
"Build", | ||
"BuildVersion", | ||
"Clean", | ||
"CoreBuild", | ||
"CoreRestore", | ||
"CoreTest", | ||
"Default", | ||
"DotnetToolRestore", | ||
"Generate_Code_Coverage_Badges", | ||
"Generate_Code_Coverage_Report", | ||
"Generate_Code_Coverage_Report_Cobertura", | ||
"Generate_Code_Coverage_Summary", | ||
"GenerateReadme", | ||
"Lint", | ||
"Pack", | ||
"Restore", | ||
"Test", | ||
"Trigger_Code_Coverage_Reports" | ||
] | ||
} | ||
}, | ||
"Solution": { | ||
"type": "string", | ||
"description": "Path to a solution file that is automatically loaded" | ||
}, | ||
"Target": { | ||
"type": "array", | ||
"description": "List of targets to be invoked. Default is '{default_target}'", | ||
"items": { | ||
"type": "string", | ||
"enum": [ | ||
"Build", | ||
"BuildVersion", | ||
"Clean", | ||
"CoreBuild", | ||
"CoreRestore", | ||
"CoreTest", | ||
"Default", | ||
"DotnetToolRestore", | ||
"Generate_Code_Coverage_Badges", | ||
"Generate_Code_Coverage_Report", | ||
"Generate_Code_Coverage_Report_Cobertura", | ||
"Generate_Code_Coverage_Summary", | ||
"GenerateReadme", | ||
"Lint", | ||
"Pack", | ||
"Restore", | ||
"Test", | ||
"Trigger_Code_Coverage_Reports" | ||
] | ||
} | ||
}, | ||
"Verbosity": { | ||
"type": "string", | ||
"description": "Logging verbosity during build execution. Default is 'Normal'", | ||
"enum": [ | ||
"Minimal", | ||
"Normal", | ||
"Quiet", | ||
"Verbose" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"$schema": "./build.schema.json", | ||
"Solution": "LaunchPad.sln" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
:; set -eo pipefail | ||
:; SCRIPT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd) | ||
:; ${SCRIPT_DIR}/build.sh "$@" | ||
:; exit $? | ||
|
||
@ECHO OFF | ||
powershell -ExecutionPolicy ByPass -NoProfile -File "%~dp0build.ps1" %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.