-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathazure-pipelines.yml
137 lines (109 loc) · 3.62 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
125
126
127
128
129
130
131
132
133
134
135
136
137
# 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: java_dockerfile
displayName: 'download Dockerfile'
inputs:
secureFile: 'java.Dockerfile'
- script: |
echo "place java.Dockerfile"
echo $(java_dockerfile.secureFilePath)
cp $(java_Dockerfile.secureFilePath) code-examples-java-private/Dockerfile
displayName: 'place Dockerfile'
- script: |
allure –-version
java --version
javac --version
mvn --version
docker --version
- task: DownloadSecureFile@1
name: tests_config_properties
displayName: 'download config.properties'
inputs:
secureFile: 'java.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: java_application
displayName: 'download application.json'
inputs:
secureFile: 'java.application.json'
- script: |
echo "place application.json"
cp $(java_application.secureFilePath) code-examples-java-private/src/main/resources/application.json
displayName: 'place application.json'
- task: DownloadSecureFile@1
name: java_private_key
displayName: 'download private.key'
inputs:
secureFile: 'private.key'
- script: |
echo "place private.key"
cp $(java_private_key.secureFilePath) code-examples-java-private/src/main/resources/private.key
displayName: 'place private.key'
- script: dir $(Build.SourcesDirectory)
- script: dir $(Build.SourcesDirectory)/code-examples-java-private
- script: dir $(Build.SourcesDirectory)/code-examples-java-private/src/main/resources
- 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 java image
inputs:
command: build
repository: 'launcher-automation-java'
dockerfile: '$(Build.SourcesDirectory)/code-examples-java-private/Dockerfile'
buildContext: '$(Build.SourcesDirectory)/code-examples-java-private '
tags: |
latest
- script: |
docker run -p 8080:8080 -d launcher-automation-java:latest
displayName: 'start java app'
- script: |
cd launcher-automation
mvn clean test -DsuiteXmlFile="java_suite.xml"
displayName: 'Java app tests'
- script: |
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
displayName: 'stop java app'
- script: |
allure generate --clean --output $(Build.SourcesDirectory)/java-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)/java-allure-output'