forked from autokey/autokey
-
Notifications
You must be signed in to change notification settings - Fork 0
167 lines (144 loc) · 4.83 KB
/
Copy pathbuild.yml
File metadata and controls
167 lines (144 loc) · 4.83 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
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
# This workflow will install Python dependencies, build debs, and upload to pypi.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python build
on:
push:
tags:
- 'v*.*.*'
# Always manually run on CI
branches: [ CI ]
jobs:
build_deb:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12.9]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v4
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('pip-requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install $(cat apt-requirements.txt)
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov wheel
pip install -r pip-requirements.txt
- name: Build .deb
# Developed from instructions on the wiki
# The debian/ folder contains dependencies etc, so all this action needs to do is activate the process.
run: |
debian/build.sh
mkdir debs
mv ../*.deb debs
- name: Upload built debs as artifacts
uses: actions/upload-artifact@v4
with:
name: debs
path: debs
build_pypi_wheel:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12.9]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v4
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('pip-requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install $(cat apt-requirements.txt)
python -m pip install --upgrade pip
pip install build
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
- name: Upload built dist as artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12.9]
needs: [build_pypi_wheel, build_deb]
steps:
- uses: actions/checkout@v4
with:
# Fetch all history so that we get tags.
fetch-depth: 0
# Waits for checks to complete before releasing.
- name: Wait on tests
uses: lewagon/wait-on-check-action@master
with:
ref: ${{ github.ref }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
check-name: 'pytest (3.12.9)'
- name: Download built dist as artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- name: Download built debs as artifacts
uses: actions/download-artifact@v4
with:
name: debs
path: ../debs
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Create a release and attach files
run: |
git fetch --tags --force
origin="$(git config --get remote.origin.url)"
# Will get tag name only if a tag triggered this workflow.
# tagname="${GITHUB_REF#refs/tags/}"
# Use this to get the most recent tag on this branch rather than the tag triggering the current build.
tagname="$(git describe --tags --abbrev=0 --match "v*.*.*")"
prerelease="--prerelease"
notes="[See here for changelog for this release]($origin/blob/$tagname/CHANGELOG.rst)"
# If we are a tag and on master, should be a full release not a prerelease
if git branch --all --contains tags/$tagname | grep --silent "master"; then
prerelease=""
fi
# Include other files by adding them as additional arguments
gh release create "$tagname" ../debs/*.deb --title "$tagname" --notes "$notes" $prerelease
# ../autokey-common_${{ github.ref }}_all.deb
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}