Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions azure-pipelines/1es-redirect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ extends:
parameters:
settings:
skipBuildTagsForGitHubPullRequests: true
networkIsolationPolicy: Permissive, CFSClean
sdl:
git:
longpaths: true
Expand Down
12 changes: 12 additions & 0 deletions azure-pipelines/common-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,20 @@ steps:
versionSpec: '${{ parameters.NodeVersion }}'
displayName: 'Install Node.js ${{ parameters.NodeVersion }}'

- pwsh: |
"registry=https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/" |
Out-File "$(Agent.TempDirectory)/aoav.npmrc"
displayName: 'Create npm config'

- task: npmAuthenticate@0
inputs:
workingFile: '$(Agent.TempDirectory)/aoav.npmrc'
displayName: 'Authenticate npm config'

- script: 'node common/scripts/install-run-rush.js install'
displayName: 'rush install'
env:
NPM_CONFIG_USERCONFIG: '$(Agent.TempDirectory)/aoav.npmrc'

- script: 'node common/scripts/install-run-rush.js rebuild --verbose'
displayName: 'rush build'
Loading