Skip to content

Commit

Permalink
Add basic pipeline file for CG scanning (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgodbe authored Jul 22, 2024
1 parent 4eed61d commit 67d7325
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Configure which branches trigger builds
trigger:
batch: true
branches:
include:
- main

variables:
- name: TeamName
value: AspNetCore

resources:
repositories:
# Repo: 1ESPipelineTemplates/1ESPipelineTemplates
- repository: 1esPipelines
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release
extends:
template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines
parameters:
pool:
name: NetCore1ESPool-Svc-Internal
image: windows.vs2019.amd64
os: windows
stages:
- stage: buildStage
displayName: Build Stage
jobs:
- job: Build
displayName: Windows Build
timeoutInMinutes: 90
workspace:
clean: all
steps:
- script: echo "Hello World"
displayName: Build Step

0 comments on commit 67d7325

Please sign in to comment.