-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pavel Glac
committed
Oct 11, 2024
1 parent
cb8c46f
commit c22188b
Showing
2 changed files
with
53 additions
and
77 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 |
---|---|---|
|
@@ -2,13 +2,13 @@ pr: none | |
trigger: | ||
- main | ||
schedules: | ||
- cron: 0 0 * * Mon | ||
displayName: Nova-Facade weekly pipeline validation | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
- cron: 0 0 * * Mon | ||
displayName: Nova-Facade weekly pipeline validation | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
variables: | ||
- group: InfoSec-SecurityResults | ||
- name: tags | ||
|
@@ -18,48 +18,51 @@ variables: | |
- name: adoNpmFeedBaseUrl | ||
value: https://pkgs.dev.azure.com/domoreexp/_apis/packaging/feeds/npm-mirror | ||
|
||
jobs: | ||
- job: compliance | ||
displayName: Compliance checks | ||
resources: | ||
repositories: | ||
- repository: 1ESPipelineTemplates | ||
type: git | ||
name: 1ESPipelineTemplates/1ESPipelineTemplates | ||
ref: refs/tags/release | ||
extends: | ||
template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates | ||
parameters: | ||
pool: | ||
name: 1ES-Teams-Windows-2022-DomoreexpGithub | ||
steps: | ||
- template: ./steps/service-tree.yml | ||
parameters: | ||
serviceTreeID: $(serviceTreeID) | ||
- template: ./steps/compliance-steps.yml | ||
|
||
- job: Release | ||
variables: | ||
- group: oss-secrets | ||
dependsOn: Compliance | ||
pool: "1ES-Teams-Ubuntu-Latest-Compliant-NCUS" | ||
steps: | ||
- template: ./steps/service-tree.yml | ||
parameters: | ||
serviceTreeID: $(serviceTreeID) | ||
- script: yarn | ||
displayName: yarn | ||
- script: | | ||
yarn ci | ||
displayName: build and test [test] | ||
- script: | | ||
git config user.email "[email protected]" | ||
git config user.name "Graphitation Service Account" | ||
git remote set-url origin https://gql-svc:$(ossGithubPAT)@github.com/microsoft/nova-facade.git | ||
displayName: Configure git for release | ||
- script: yarn release -y -n $(ossNpmToken) --access public | ||
displayName: Release | ||
- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 | ||
displayName: 📒 Generate Manifest | ||
inputs: | ||
BuildDropPath: $(System.DefaultWorkingDirectory) | ||
- task: PublishPipelineArtifact@1 | ||
displayName: 📒 Publish Manifest | ||
inputs: | ||
artifactName: SBom-$(System.JobAttempt) | ||
targetPath: $(System.DefaultWorkingDirectory)/_manifest | ||
- template: ./steps/pierce-ado-npm-mirror-cache.yml | ||
parameters: | ||
adoNpmFeedPat: $(adoNpmFeedPat) | ||
adoNpmFeedBaseUrl: $(adoNpmFeedBaseUrl) | ||
os: windows | ||
customBuildTags: | ||
- ES365AIMigrationTooling | ||
stages: | ||
- stage: stage | ||
jobs: | ||
- job: compliance | ||
displayName: Compliance checks | ||
steps: | ||
- template: /.azure-devops/steps/service-tree.yml@self | ||
parameters: | ||
serviceTreeID: $(serviceTreeID) | ||
- template: /.azure-devops/steps/compliance-steps.yml@self | ||
- job: Release | ||
variables: | ||
- group: oss-secrets | ||
dependsOn: Compliance | ||
steps: | ||
- template: /.azure-devops/steps/service-tree.yml@self | ||
parameters: | ||
serviceTreeID: $(serviceTreeID) | ||
- script: yarn | ||
displayName: yarn | ||
- script: | | ||
yarn ci | ||
displayName: build and test [test] | ||
- script: | | ||
git config user.email "[email protected]" | ||
git config user.name "Graphitation Service Account" | ||
git remote set-url origin https://gql-svc:$(ossGithubPAT)@github.com/microsoft/nova-facade.git | ||
displayName: Configure git for release | ||
- script: yarn release -y -n $(ossNpmToken) --access public | ||
displayName: Release | ||
- template: /.azure-devops/steps/pierce-ado-npm-mirror-cache.yml@self | ||
parameters: | ||
adoNpmFeedPat: $(adoNpmFeedPat) | ||
adoNpmFeedBaseUrl: $(adoNpmFeedBaseUrl) |
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