-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathazure-pipelines.yml
124 lines (100 loc) · 3.3 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# 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
resources:
repositories:
- repository: launcher-automation
type: github
name: docusign/launcher-automation
ref: main
endpoint: launcherAutomationServiceConnection
pr:
- master
- releases/*
pool:
name: launcher-automation-pool
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- checkout: self
- checkout: launcher-automation
- script: dir $(Build.SourcesDirectory)
- task: DownloadSecureFile@1
name: node_dockerfile
displayName: 'download Dockerfile'
inputs:
secureFile: 'node.Dockerfile'
- script: |
echo "place node.Dockerfile"
echo $(node_dockerfile.secureFilePath)
cp $(node_Dockerfile.secureFilePath) code-examples-node-private/Dockerfile
displayName: 'place Dockerfile'
- task: DownloadSecureFile@1
name: tests_config_properties
displayName: 'download config.properties'
inputs:
secureFile: 'tests_config.properties'
- script: |
echo "place config.properties"
echo $(tests_config_properties.secureFilePath)
cp $(tests_config_properties.secureFilePath) launcher-automation/src/main/resources/config.properties
displayName: 'place config.properties'
- task: DownloadSecureFile@1
name: node_appsettings
displayName: 'download appsettings.json'
inputs:
secureFile: 'node.appsettings.json'
- script: |
echo "place appsettings.json"
cp $(node_appsettings.secureFilePath) code-examples-node-private/config/appsettings.json
displayName: 'place appsettings.json'
- task: DownloadSecureFile@1
name: node_private_key
displayName: 'download private.key'
inputs:
secureFile: 'private.key'
- script: |
echo "place private.key"
cp $(node_private_key.secureFilePath) code-examples-node-private/config/private.key
displayName: 'place private.key'
- script: |
echo "Checking for running Docker containers..."
containers=$(docker ps -q)
if [ ! -z "$containers" ]; then
echo "Stopping running Docker containers..."
docker stop $(docker ps -q)
else
echo "No Docker containers are running."
fi
displayName: "check for running containers"
- script: |
docker system prune -a --force
displayName: "cleanup docker files"
- task: Docker@2
displayName: Build node image
inputs:
command: build
repository: 'launcher-automation-node'
dockerfile: '$(Build.SourcesDirectory)/code-examples-node-private/Dockerfile'
buildContext: '$(Build.SourcesDirectory)/code-examples-node-private '
tags: |
latest
- script: |
docker run -p 3000:3000 -d launcher-automation-node:latest
displayName: 'start node app'
- script: |
cd launcher-automation
mvn clean test -DsuiteXmlFile="node_suite.xml"
displayName: 'Node app tests'
- script: |
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
displayName: 'stop node app'
- script: |
allure generate --clean --output $(Build.SourcesDirectory)/node-allure-output '$(Build.SourcesDirectory)/launcher-automation/target/allure-results'
displayName: generate allure html reports
- task: PublishAllureReport@1
displayName: 'Publish Allure Report'
inputs:
reportDir: '$(Build.SourcesDirectory)/node-allure-output'