-
Couldn't load subscription status.
- Fork 30
Rsh/build and package pipeline #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,101 @@ | ||
| #Copyright (c) Microsoft Corporation. All rights reserved. | ||
| #Licensed under the MIT License. | ||
| #Building and packaging the artifacts of the Java-Core libraries using the build.gradle file. | ||
| #Ready the package for deployment and release. | ||
|
|
||
| trigger: | ||
| branches: | ||
| include: | ||
| - dev | ||
| - main | ||
| - master | ||
| paths: | ||
| include: | ||
| - src/* | ||
| exclude: | ||
| - .gitignore | ||
| - CONTRIBUTING.md | ||
| - LICENSE | ||
| - THIRD PARTY NOTICES | ||
| - build.gradle | ||
| - gradle.properties | ||
| - gradlew | ||
| - gradlew.bat | ||
| - readme.md | ||
| - settings.gradle | ||
|
|
||
| pr: none | ||
|
|
||
| pool: | ||
| vmImage: 'windows-latest' | ||
|
|
||
| steps: | ||
| - checkout: self | ||
| clean: true | ||
| fetchDepth: 1 | ||
|
|
||
| - task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2 | ||
| displayName: 'Run CredScan' | ||
| inputs: | ||
| debugMode: false | ||
|
|
||
| - task: DownloadSecureFile@1 | ||
| inputs: | ||
| secureFile: 'local.properties' | ||
|
|
||
| - task: DownloadSecureFile@1 | ||
| inputs: | ||
| secureFile: 'secring.gpg' | ||
|
|
||
| - task: DownloadSecureFile@1 | ||
| inputs: | ||
| secureFile: 'secring.gpg.lock' | ||
|
|
||
| - task: CopyFiles@2 | ||
| inputs: | ||
| SourceFolder: '$(Agent.TempDirectory)' | ||
| Contents: '**' | ||
| TargetFolder: '$(System.DefaultWorkingDirectory)' | ||
|
|
||
| - task: Gradle@2 | ||
| inputs: | ||
| gradleWrapperFile: 'gradlew' | ||
| tasks: 'build' | ||
| publishJUnitResults: true | ||
| testResultsFiles: '**/TEST-*.xml' | ||
| javaHomeOption: 'JDKVersion' | ||
| sonarQubeRunAnalysis: false | ||
|
|
||
| - task: PublishBuildArtifacts@1 | ||
| displayName: 'Publish Artifact: drop' | ||
| inputs: | ||
| PathtoPublish: '$(Build.ArtifactStagingDirectory)' | ||
|
|
||
| - task: CopyFiles@2 | ||
| inputs: | ||
| SourceFolder: '$(System.DefaultWorkingDirectory)' | ||
| Contents: | | ||
| **/libs/* | ||
| build.gradle | ||
| gradlew | ||
| gradlew.bat | ||
| settings.gradle | ||
| gradle.properties | ||
| **/gradle/wrapper/* | ||
| TargetFolder: '$(Build.ArtifactStagingDirectory)/' | ||
|
|
||
| - task: PublishBuildArtifacts@1 | ||
| inputs: | ||
| PathtoPublish: '$(Build.ArtifactStagingDirectory)' | ||
| ArtifactName: 'drop' | ||
| publishLocation: 'Container' | ||
|
|
||
| - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0 | ||
| displayName: 'Graph Client Tooling pipeline fail notification' | ||
| inputs: | ||
| addressType: serviceEndpoint | ||
| serviceEndpointName: 'microsoftgraph pipeline status' | ||
| title: '$(Build.DefinitionName) failure notification' | ||
| text: 'This pipeline has failed. View the build details for further information. This is a blocking failure.' | ||
| condition: and(failed(), ne(variables['Build.Reason'], 'Manual')) | ||
| enabled: true | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add copyright header and comments about the intended purpose of this pipeline definition.