-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial template * Remove CredScan suppressions * Add APIScan --------- Co-authored-by: Dmitriy Kirakosyan <[email protected]>
- Loading branch information
1 parent
ad7c74b
commit 9b7342b
Showing
1 changed file
with
102 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,102 @@ | ||
trigger: | ||
- master | ||
|
||
pr: | ||
- master | ||
|
||
resources: | ||
repositories: | ||
- repository: 1ESPipelineTemplates | ||
type: git | ||
name: 1ESPipelineTemplates/1ESPipelineTemplates | ||
ref: refs/tags/release | ||
name: $(Build.SourceBranchName)_$(date:yyyyMMdd)$(rev:.r) | ||
|
||
extends: | ||
${{ if eq(variables['Build.SourceBranch'], 'refs/heads/master') }}: | ||
template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates | ||
${{ else }}: | ||
template: v1/1ES.Unofficial.PipelineTemplate.yml@1ESPipelineTemplates | ||
parameters: | ||
pool: | ||
name: 1ES-PT-CBL-Mariner-2.0-Gen2 | ||
os: linux | ||
customBuildTags: | ||
- ES365AIMigrationTooling-BulkMigrated | ||
sdl: | ||
sourceAnalysisPool: 1ES-PT-Windows-2022 | ||
stages: | ||
- stage: Stage | ||
jobs: | ||
- job: HostJob | ||
templateContext: | ||
outputs: | ||
- output: pipelineArtifact | ||
displayName: "Publish Artifact: artifacts" | ||
path: '$(Build.ArtifactStagingDirectory)/npm' | ||
artifactName: npm | ||
|
||
steps: | ||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: '14.x' | ||
displayName: 'Install Node.js' | ||
|
||
- script: | | ||
npm pack | ||
npm install -g code-push*.tgz | ||
displayName: 'Package code-push' | ||
workingDirectory: $(Build.SourcesDirectory) | ||
- task: DeleteFiles@1 | ||
inputs: | ||
contents: node_modules | ||
displayName: 'Delete node_modules' | ||
|
||
- task: ArchiveFiles@2 | ||
inputs: | ||
rootFolderOrFile: '$(Build.SourcesDirectory)' | ||
includeRootFolder: false | ||
archiveType: 'tar' | ||
archiveFile: '$(Build.ArtifactStagingDirectory)/npm/$(Build.BuildId).tgz' | ||
replaceExistingArchive: true | ||
verbose: true | ||
displayName: 'Prepare npm artifact' | ||
|
||
- stage: APIScan | ||
dependsOn: Stage | ||
pool: | ||
name: 1ES-PT-Windows-2022 | ||
os: windows | ||
variables: | ||
"agent.source.skip": true | ||
jobs: | ||
- job: APIScan | ||
steps: | ||
- task: DownloadPipelineArtifact@2 | ||
displayName: Download Pipeline Artifacts for APIScan | ||
inputs: | ||
artifactName: npm | ||
targetPath: '$(Agent.BuildDirectory)/npm' | ||
- task: ExtractFiles@1 | ||
inputs: | ||
archiveFilePatterns: '$(Agent.BuildDirectory)/npm/*.tgz' | ||
destinationFolder: '$(Agent.BuildDirectory)/npm_extracted' | ||
- task: AzureKeyVault@2 | ||
inputs: | ||
azureSubscription: 'AC - Dev Infra & Build Pool' | ||
KeyVaultName: 'mobile-center-sdk' | ||
SecretsFilter: 'appcenter-sdk-managed-identity-clientid' | ||
RunAsPreJob: false | ||
- task: APIScan@2 | ||
displayName: 'Run APIScan' | ||
inputs: | ||
softwareFolder: '$(Agent.BuildDirectory)\npm_extracted' | ||
softwareName: 'code-push' | ||
softwareVersionNum: '$(Build.BuildId)' | ||
isLargeApp: false | ||
toolVersion: 'Latest' | ||
verbosityLevel: verbose | ||
condition: and(succeeded(), ne(variables['DisableAPIScan'], 'true')) | ||
env: | ||
AzureServicesAuthConnectionString: 'runAs=App;AppId=$(appcenter-sdk-managed-identity-clientid)' |