-
-
Notifications
You must be signed in to change notification settings - Fork 37
198 lines (191 loc) · 6.17 KB
/
gh_actions.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
name: PlenoptiCam's CI Pipeline
# trigger workflow on push or pull requests
on:
push:
branches:
- master
- develop
paths-ignore:
- 'docs/**'
- '*.rst'
- '*.md'
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
branches:
- master
- develop
workflow_dispatch:
inputs:
tag:
description: 'Tag'
required: true
default: 'v0.0.0-alpha'
jobs:
unit_test:
name: Unit Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] #, windows-latest, macos-latest
steps:
- uses: actions/checkout@v2
with:
ref: develop
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install setuptools
python3 -m pip install -r requirements.txt
python3 -m pip install codecov
python3 -m pip install coveralls
- name: Run headless unit tests
uses: GabrielBB/xvfb-action@v1
with:
run: python3 -m coverage run tests/unit_test_all.py
- name: Submit Coverage Report to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: coveralls
pypi_test:
name: PyPI Test
needs: unit_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install wheel
pip install --upgrade twine
- name: PyPI-Test
env:
TEST_PYPI_TOKEN: ${{ secrets.TEST_PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
python -m twine upload -r testpypi dist/* -u __token__ -p $TEST_PYPI_TOKEN --skip-existing
pip uninstall -y plenopticam
pip install -i https://test.pypi.org/simple/ plenopticam
gh_release:
name: GitHub Release Draft
needs: pypi_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install wheel
python setup.py sdist bdist_wheel
- name: Release Assets
uses: actions/github-script@v2
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
console.log('environment', process.versions);
const fs = require('fs').promises;
const path = require('path');
const dirPath = './dist';
const { repo: { owner, repo }, sha } = context;
console.log({ owner, repo, sha });
const release = await github.repos.createRelease({
owner, repo,
tag_name: process.env.GITHUB_REF,
draft: true,
target_commitish: sha
});
console.log('created release', { release });
for (let file of await fs.readdir(dirPath)) {
// do whatever filtering you want here, I'm just uploading all the files
console.log('uploading', file);
await github.repos.uploadReleaseAsset({
owner, repo,
release_id: release.data.id,
name: file,
data: await fs.readFile(`./${path.join(dirPath, file)}`)
});
}
pypi_release:
name: PyPI Release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: gh_release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install wheel
pip install --upgrade twine
- name: PyPI-Upload
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
python -m twine upload -r pypi dist/* -u __token__ -p $PYPI_TOKEN --skip-existing
pip uninstall -y plenopticam
pip install -i https://pypi.org/simple/ plenopticam
app_bundling:
name: App Bundling
needs: unit_test
if: github.event_name == 'push' && github.ref != 'refs/heads/master'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.9']
steps:
- uses: actions/checkout@v4
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller
pip install tornado
- name: Linux Bundling
if: matrix.os == 'ubuntu-latest'
run: bash plenopticam/scripts/bundling/py2bin_gh.sh
- name: macOS Bundling
if: matrix.os == 'macos-latest'
run: |
npm install --global create-dmg
bash plenopticam/scripts/bundling/pyinst2app_gh.sh
- name: Windows Bundling
if: matrix.os == 'windows-latest'
run: |
choco install advanced-installer --version=17.0.0
pip install pypiwin32
pip install pyinstaller --upgrade
plenopticam/scripts/bundling/py2exe.bat
plenopticam/scripts/bundling/msi_auto-gen.bat
- name: Create Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true