-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpipeline.yml
More file actions
39 lines (37 loc) · 861 Bytes
/
pipeline.yml
File metadata and controls
39 lines (37 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
parameters:
- name: doBuild
displayName: Build code
default: true
type: boolean
- name: doUnitTesting
displayName: Run unit tests
default: true
type: boolean
- name: doPublish
displayName: Publish to Gitlab package repository
default: false
type: boolean
- name: buildConfiguration
displayName: Build configuration
type: string
default: Release
values:
- Debug
- Release
- name: publishTargets
displayName: Publish targets
type: string
default: win-x64;linux-x64
resources:
repositories:
- repository: pipeline
name: titanis
ref: ts-internal
jobs:
- template: pipeline/azure-pipelines-cs-ci.yml@pipeline
parameters:
- doBuild: ${{ doBuild }}
- doUnitTesting: ${{ doUnitTesting }}
- doPublish: ${{ doPublish }}
- buildConfiguration: ${{ buildConfiguration }}
- publishTargets: ${{ publishTargets }}