-
-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (47 loc) · 1.29 KB
/
build.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
name: Build
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Python ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11']
env:
RELEASE_FILE: ${{ github.event.repository.name }}-${{ github.event.release.tag_name || github.sha }}-py${{ matrix.python }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
path: rpipins
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
working-directory: rpipins
run: |
make dev-deps
- name: Build Packages
working-directory: rpipins
run: |
make build
- name: Upload Packages
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_FILE }}
path: ${{ github.workspace }}/rpipins/dist/
- name: Build Debian Package
working-directory: rpipins
run: |
make deb-deps
make deb
- name: Upload Debian Package
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_FILE }} (deb)
path: ${{ github.workspace }}/*.deb