Skip to content
Open
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .pipelines/1p-build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
parameters:
- name: npmDebugLevel
displayName: "NPM Debug Level"
type: string
default: "notice"
values:
- "notice"
- "silent"
- "error"
- "warn"
- "http"
- "info"
- "verbose"
- "silly"
variables:
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
LinuxContainerImage: "mcr.microsoft.com/onebranch/cbl-mariner/build:2.0" # Docker image which is used to build the project https://aka.ms/obpipelines/containers
Expand All @@ -17,7 +31,7 @@ resources:
- repository: 1P
type: git
name: IDDP/msal-javascript-1p
ref: master
ref: debug-log-config

extends:
template: v2/OneBranch.NonOfficial.CrossPlat.yml@templates # https://aka.ms/obpipelines/templates
Expand All @@ -35,10 +49,12 @@ extends:
parameters:
libName: msal-common
path: "lib/"
npmDebugLevel: ${{ parameters.npmDebugLevel }}
- template: .pipelines/templates/ci-template.yml@1P
parameters:
libName: msal-browser
path: "lib/"
npmDebugLevel: ${{ parameters.npmDebugLevel }}
- template: .pipelines/templates/ci-template.yml@1P
parameters:
libName: msal-browser-1p
Expand All @@ -47,16 +63,20 @@ extends:
parameters:
libName: msal-node
path: "lib/"
npmDebugLevel: ${{ parameters.npmDebugLevel }}
- template: .pipelines/templates/ci-template.yml@1P
parameters:
libName: msal-react
path: "lib/"
npmDebugLevel: ${{ parameters.npmDebugLevel }}
- template: .pipelines/templates/ci-template.yml@1P
parameters:
libName: msal-angular
path: "lib/"
npmDebugLevel: ${{ parameters.npmDebugLevel }}
- template: .pipelines/templates/ci-template.yml@1P
parameters:
libName: msal-node-extensions
path: "extensions/"
os: ["linux", "windows", "macOs"]
npmDebugLevel: ${{ parameters.npmDebugLevel }}
Loading