Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion azure-pipelines-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extends:
image: HostedPoolWindowsImage # Name of the image in your pool. If not specified, first image of the pool is used
os: windows # OS of the image. Allowed values: windows, linux, macOS
settings:
networkIsolationPolicy: Permissive
networkIsolationPolicy: Permissive,CFSClean
stages:
- stage: Stage
jobs:
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extends:
image: HostedPoolWindowsImage # Name of the image in your pool. If not specified, first image of the pool is used
os: windows # OS of the image. Allowed values: windows, linux, macOS
settings:
networkIsolationPolicy: Permissive
networkIsolationPolicy: Permissive,CFSClean
stages:

# ── Stage 1: Lightweight detection (runs every night, ~1-2 min) ──
Expand Down
8 changes: 7 additions & 1 deletion azure-pipelines-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ pr:
# The `resources` specify the location and version of the 1ES PT.
resources:
repositories:
- repository: fastPipelines
type: git
name: open-source/FASTPipelineTemplates
ref: main
- repository: 1esPipelines
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
Expand All @@ -29,7 +33,7 @@ extends:
image: HostedPoolWindowsImage # Name of the image in your pool. If not specified, first image of the pool is used
os: windows # OS of the image. Allowed values: windows, linux, macOS
settings:
networkIsolationPolicy: Permissive
networkIsolationPolicy: Permissive,CFSClean
stages:
- stage: Stage
jobs:
Expand Down Expand Up @@ -62,6 +66,8 @@ extends:
path: $(npm_config_cache)
displayName: "Cache npm"

- template: FAST.CFS.PipelineTemplate.yml@fastPipelines

- script: |
npm ci
displayName: "Install package dependencies"
Expand Down
Loading