-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
37 lines (32 loc) · 1.04 KB
/
azure-pipelines.yml
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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- main
pool: Default
# variables:
# -name: testVar
# value: "tteesstt"
jobs:
- job: Test_Job
displayName: Test_Job
steps:
- script: echo $(setvarStep.testVar)
name: testvar
- powershell: echo "##vso[task.setvariable variable=testVar;isOutput=true]this is the value"
Write-Host "##vso[task.setvariable variable=foo;]bar"
name: setvarStep
- powershell: |
if ( $env:foo -eq 'bar' )
{
Write-Output "The condition was true"
Write-Host "The value of project_name is $env:foo"
exit 1
}
else
{
Write-Output "The condition was false"
}
- script: echo $(setvarStep.testVar)
name: echovar