-
Notifications
You must be signed in to change notification settings - Fork 3
273 lines (225 loc) · 7.86 KB
/
build_deb_pkg.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Ubuntu/Debian build
on:
push:
tags:
- '*'
env:
APPLICATION_NAME: piranhaGUI
permissions:
contents: write
defaults:
run:
shell: bash -l {0}
jobs:
prepare_build:
runs-on: ubuntu-latest
outputs:
release_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- uses: actions/checkout@v4
# - name: Set up Python 3.10
# uses: actions/setup-python@v3
# with:
# python-version: "3.10"
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: false
environment-file: artifice/environment.yml
activate-environment: artifice
channels: conda-forge,defaults
miniforge-version: latest
auto-activate-base: false
- name: create pip requirements file (for building deb package)
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
pip freeze > artifice/requirements.txt
- name: increment version number
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
python artifice/update_version_number.py ${{ github.ref_name }} piranhaGUI
- name: set git config
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
- name: stage changed files
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
git add *
- name: commit changes
id: commit
continue-on-error: true
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
git commit -m"incrementing version number"
- name: set git config
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
git fetch origin main
- name: push changes to main
env:
GITHUB_TOKEN: ${{ github.token }}
if: steps.commit.outcome == 'success'
run: |
git push origin HEAD:main
# - name: pull piranha docker image
# run: |
# docker pull polionanopore/piranha:latest
# - name: save piranha docker image to file
# working-directory: ./artifice/
# run: |
# mkdir piranha_image_file
# docker save --output piranha_image_file/piranha.tar polionanopore/piranha:latest
# - name: Temporarily save piranha docker image
# uses: actions/upload-artifact@v4
# with:
# name: piranha.tar
# path: artifice/piranha_image_file/piranha.tar
# retention-days: 1
- name: create release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: true
release_name: ${{ env.APPLICATION_NAME }} v${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
body_path: ''
env:
GITHUB_TOKEN: ${{ github.token }}
build_deb_release:
needs: [prepare_build]
runs-on: ubuntu-latest
env:
RELEASE_URL: ${{ needs.prepare_build.outputs.release_url }}
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: make sure up to date
run: |
git pull origin main
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -r artifice/requirements.txt
# - name: make dir for piranha image file
# working-directory: ./artifice
# run: |
# mkdir piranha_image_file
# - name: Retrieve saved piranha docker image
# uses: actions/download-artifact@v4
# with:
# name: piranha.tar
# path: artifice/piranha_image_file/
- name: build deb package
working-directory: ./artifice/linux_build/
run: |
source create_piranha_package
- name: upload ubuntu/debian package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ env.RELEASE_URL }}
asset_path: artifice/linux_build/pkg_file/${{ env.APPLICATION_NAME }}_${{ github.ref_name }}.deb
asset_name: ${{ env.APPLICATION_NAME }}_${{ github.ref_name }}.deb
asset_content_type: application/vnd.debian.binary-package
build_darwin_release:
needs: [prepare_build]
runs-on: macos-12
env:
RELEASE_URL: ${{ needs.prepare_build.outputs.release_url }}
steps:
- uses: actions/checkout@v4
- name: make sure up to date
run: |
git pull origin main
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: false
environment-file: artifice/environment.yml
activate-environment: artifice
channels: conda-forge,defaults
miniforge-version: latest
auto-activate-base: false
# - name: Retrieve saved piranha docker image
# uses: actions/download-artifact@v4
# with:
# name: piranha.tar
# path: artifice/resources/
- name: build package
working-directory: ./artifice/mac_build/pyinstaller_build/
run: |
pyinstaller piranhaGUI.spec
- name: compress macos app
working-directory: ./artifice/mac_build/pyinstaller_build/dist/
run: |
ditto -c -k --sequesterRsrc --keepParent --zlibCompressionLevel 9 ${{ env.APPLICATION_NAME }}v${{ github.ref_name }}.app ${{ env.APPLICATION_NAME }}v${{ github.ref_name }}_macos.zip
- name: upload mac package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ env.RELEASE_URL }}
asset_path: ./artifice/mac_build/pyinstaller_build/dist/${{ env.APPLICATION_NAME }}v${{ github.ref_name }}_macos.zip
asset_name: ${{ env.APPLICATION_NAME }}v${{ github.ref_name }}_macos.zip
asset_content_type: application/zip
build_win_release:
needs: [prepare_build]
runs-on: windows-latest
env:
RELEASE_URL: ${{ needs.prepare_build.outputs.release_url }}
steps:
- uses: actions/checkout@v4
- name: make sure up to date
run: |
git pull origin main
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: false
environment-file: artifice/environment.yml
activate-environment: artifice
channels: conda-forge,defaults
miniforge-version: latest
auto-activate-base: false
- name: fix pyinstaller version for windows
run: |
pip install pyinstaller==6.6.0
# - name: make dir for piranha image file
# working-directory: ./artifice
# run: |
# mkdir piranha_image_file
# - name: Retrieve saved piranha docker image
# uses: actions/download-artifact@v4
# with:
# name: piranha.tar
# path: artifice/piranha_image_file/
- name: build package
working-directory: ./artifice/windows_build/
run: |
./build_windows.bat
- name: compile installer
uses: Minionguyjpro/[email protected]
with:
path: ./artifice/windows_build/dist/piranhaGUI_installer.iss
- name: upload windows installer
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ env.RELEASE_URL }}
asset_path: artifice/windows_build/dist/installer/${{ env.APPLICATION_NAME }}v${{ github.ref_name }}_installer_windows.exe
asset_name: ${{ env.APPLICATION_NAME }}v${{ github.ref_name }}_installer_windows.exe
asset_content_type: application/vnd.microsoft.portable-executable