forked from democb/code-examples-python
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
134 lines (105 loc) · 3.45 KB
/
azure-pipelines.yml
File metadata and controls
134 lines (105 loc) · 3.45 KB
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
# 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: python_dockerfile
displayName: 'download Dockerfile'
inputs:
secureFile: 'python.Dockerfile'
- script: |
echo "place python.Dockerfile"
echo $(python_dockerfile.secureFilePath)
cp $(python_Dockerfile.secureFilePath) code-examples-python-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: '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: ds_config
displayName: 'download ds_config.py'
inputs:
secureFile: 'python.ds_config.py'
- script: |
echo "place ds_config.py"
cp $(ds_config.secureFilePath) code-examples-python-private/app/ds_config.py
displayName: 'place dsconfig.py'
- task: DownloadSecureFile@1
name: run_py
displayName: 'download python.run.py'
inputs:
secureFile: 'python.run.py'
- script: |
echo "place ds_config.py"
cp $(run_py.secureFilePath) code-examples-python-private/run.py
displayName: 'place run.py'
- task: DownloadSecureFile@1
name: python_private_key
displayName: 'download private.key'
inputs:
secureFile: 'private.key'
- script: |
echo "place private.key"
cp $(python_private_key.secureFilePath) code-examples-python-private/app/private.key
displayName: 'place private.key'
- script: dir $(Build.SourcesDirectory)
- script: dir $(Build.SourcesDirectory)/code-examples-python-private
- script: dir $(Build.SourcesDirectory)/code-examples-python-private/app
- task: Docker@2
displayName: Build python image
inputs:
command: build
repository: 'launcher-automation-python'
dockerfile: '$(Build.SourcesDirectory)/code-examples-python-private/Dockerfile'
buildContext: '$(Build.SourcesDirectory)/code-examples-python-private '
tags: |
latest
- script: |
docker run -p 3000:3000 -d launcher-automation-python:latest
displayName: 'start python app'
- script: |
cd launcher-automation
mvn clean test -DsuiteXmlFile="python_suite.xml"
displayName: 'Python app tests'
- script: |
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
displayName: 'stop python app'
- script: |
allure generate --clean --output $(Build.SourcesDirectory)/python-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)/python-allure-output'