chore: add DevOps build pipeline for S360 security vulnerability scanning#1318
Merged
Conversation
…ning Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
MIchaelMainer
approved these changes
May 15, 2026
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds an Azure DevOps pipeline that runs nightly to build the Java Beta SDK and execute SDL security scans (CredScan, PoliCheck, BinSkim) for S360 vulnerability surfacing.
Changes:
- New scheduled (daily) Azure DevOps pipeline using 1ES Unofficial Pipeline Template
- Builds SDK via Gradle on Java 17 and runs unit tests
- Enables CredScan, PoliCheck, and BinSkim SDL tools
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| policheck: | ||
| enabled: true | ||
| binskim: | ||
| enabled: true |
Comment on lines
+52
to
+58
| - script: chmod +x gradlew && ./gradlew assemble | ||
| displayName: Build SDK | ||
| workingDirectory: $(Build.SourcesDirectory) | ||
|
|
||
| - script: ./gradlew test | ||
| displayName: Run unit tests | ||
| workingDirectory: $(Build.SourcesDirectory) |
| template: v1/1ES.Unofficial.PipelineTemplate.yml@1ESPipelineTemplates | ||
| parameters: | ||
| pool: | ||
| name: Azure-Pipelines-1ESPT-ExDShared |
| - repository: 1ESPipelineTemplates | ||
| type: git | ||
| name: 1ESPipelineTemplates/1ESPipelineTemplates | ||
| ref: refs/tags/release |
| displayName: Build Java Beta SDK | ||
| steps: | ||
| - checkout: self | ||
| submodules: recursive |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a DevOps build pipeline to build this SDK so that we may surface any S360 security vulnerabilities early and on a consistent basis.
Changes
Motivation
Proactive security scanning helps catch vulnerabilities before they reach production, aligning with S360 compliance requirements.
Microsoft Reviewers: Open in CodeFlow