-
Notifications
You must be signed in to change notification settings - Fork 5
195 lines (166 loc) · 5 KB
/
ci_cd.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
name: GitHub CI
on:
workflow_dispatch:
pull_request:
push:
tags:
- "*"
branches:
- main
env:
MAIN_PYTHON_VERSION: '3.11'
DOCUMENTATION_CNAME: 'installer.docs.pyansys.com'
LIBRARY_NAME: 'ansys-tools-installer'
LIBRARY_NAMESPACE: 'ansys.tools.installer'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
doc-style:
name: "Documentation style"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/doc-style@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
tests:
name: "Tests"
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
fail-fast: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISPLAY: ':99'
steps:
- name: Install Linux os dependencies
if: runner.os == 'Linux'
run: sudo apt install libegl1
- name: Setup headless display
uses: pyvista/setup-headless-display-action@v2
- uses: ansys/actions/tests-pytest@v4
with:
python-version: ${{ matrix.python-version }}
doc-build:
name: "Build documentation"
runs-on: ubuntu-latest
needs: [doc-style]
steps:
- name: Build project documentation
uses: ansys/actions/doc-build@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
dependencies: "libegl1"
doc-deploy:
name: "Deploy development documentation"
runs-on: ubuntu-latest
needs: [doc-build]
if: github.ref == 'refs/heads/main'
steps:
- uses: ansys/actions/doc-deploy-dev@v4
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
build-application:
name: "Build Application"
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
- name: Install Dependencies
run: pip install -e .[freeze]
- name: Freeze application
run: pyinstaller frozen.spec
- name: Install NSIS
run: choco install nsis -y
- name: Print NSIS version
run: makensis -VERSION
- name: Run NSIS
shell: pwsh
if: always()
run: |
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
makensis setup.nsi
- name: List output
run: ls -R dist
- uses: actions/upload-artifact@v3
with:
name: Python-Installer
path: dist/*Setup*.exe
sign-application:
name: Sign application
needs: [build-application]
runs-on:
group: ansys-network
labels: [self-hosted, Windows, signtool]
steps:
- name: Checkout the SignTool
uses: actions/checkout@v3
with:
repository: ansys-internal/signtool-ansys-apps
token: ${{ secrets.SIGNTOOL_ACCESS_TOKEN }}
- uses: actions/download-artifact@v3
with:
name: Python-Installer
path: signtool/installer
- name: List current structure
run: ls -R
- name: Sign application
working-directory: signtool
run: |
$filename = (get-ChildItem installer -recurse | where {$_.name -like "*Setup*"}).Name
$jobname = $filename -replace ".{4}$"
dotnet signclient.dll sign `
-r [email protected] `
-s '${{ secrets.SIGNTOOL_PWD }}' `
-c AppSettings.json `
-n $jobname `
-i installer/$filename
- uses: actions/upload-artifact@v3
with:
name: Python-Installer-Signed
path: signtool/installer/*Setup*.exe
release:
name: Release application
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
needs: [sign-application]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: Python-Installer-Signed
path: installer-signed
- uses: actions/download-artifact@v3
with:
name: Python-Installer
path: installer
- name: Display structure of downloaded files
run: ls -R
- name: Rename unsigned exe
run: |
cd installer
for filename in *.exe; do mv "$filename" "Unsigned_${filename}"; done;
cd -
- name: Release to GitHub
uses: softprops/action-gh-release@v1
with:
files: |
installer-signed/*.exe
installer/*.exe
generate_release_notes: true
doc-deploy-release:
name: Upload release documentation
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
runs-on: ubuntu-latest
needs: [release, doc-build]
steps:
- name: Deploy the stable documentation
uses: ansys/actions/doc-deploy-stable@v4
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
python-version: ${{ env.MAIN_PYTHON_VERSION }}