-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.8.0 - pre and post jobs for container scanning (#65)
* Add Container Mapping support to MSDO (#63) * Improve logging and write tests (#64) * v1.8.0 - add pre and post job handling for containers * Add Timeout for all commands (#70) * Add a timeout for all commands * Add tests for command executor * fix test * Add comments and cleanup * Removed delim * modify commands (#72) * Remove Task Version (#73) * Removing redundant version call * Removed code * Update build process to split for out-of-band npm install * Sign powershell scripts * Remove signatures, unidentified on build agent * Fix build file * Default to powershell.exe * Update the new command dropdown type to pickList --------- Co-authored-by: Laveesh Rohra <[email protected]>
- Loading branch information
1 parent
98410ce
commit ed67861
Showing
29 changed files
with
945 additions
and
4,759 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
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,31 @@ | ||
{ | ||
"name": "microsoft-security-devops-azdevops", | ||
"version": "1.7.2", | ||
"description": "Microsoft Security DevOps for Azure DevOps.", | ||
"author": "Microsoft Corporation", | ||
"license": "MIT", | ||
"repository": "https://github.com/microsoft/microsoft-security-devops-azdevops", | ||
"scripts": { | ||
"build": "dotnet build ./build.proj", | ||
"compile": "dotnet build ./build.proj /t:Compile", | ||
"compile-tests": "dotnet build ./build.proj /t:CopyTestHelpers", | ||
"compile-and-test": "dotnet build ./build.proj /t:Test /p:RunTests=true", | ||
"test": "npx mocha **/*.tests.js" | ||
}, | ||
"dependencies": { | ||
"@microsoft/security-devops-azdevops-task-lib": "1.7.2", | ||
"azure-pipelines-task-lib": "4.3.1", | ||
"azure-pipelines-tool-lib": "2.0.4" | ||
}, | ||
"devDependencies": { | ||
"@types/mocha": "^10.0.1", | ||
"@types/mockery": "^1.4.30", | ||
"@types/node": "^20.3.1", | ||
"@types/q": "^1.5.5", | ||
"@types/sinon": "^10.0.15", | ||
"mocha": "^10.2.0", | ||
"sinon": "^15.2.0", | ||
"tfx-cli": "^0.15.0", | ||
"typescript": "^5.1.3" | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -74,4 +74,4 @@ Get-ChildItem -Path $targetDirectory -Include @('task.json', 'task.loc.json', 't | |
break | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.