-
Notifications
You must be signed in to change notification settings - Fork 6
78 lines (62 loc) · 1.7 KB
/
test-pyapp.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
---
name: Test PyApp binaries creation
on: pull_request
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: poetry
- name: Build package
run: poetry build
- name: Store release files
uses: actions/upload-artifact@v4
with:
name: release
path: dist/
- name: Get version
id: version
run: poetry version --short >> "$GITHUB_OUTPUT"
outputs:
version: ${{ steps.version.outputs.value }}
pyapp-linux:
runs-on: ubuntu-24.04
needs:
- build
steps:
- name: Fetch release files
uses: actions/download-artifact@v4
with:
name: release
path: dist/
- name: Prepare wheel
run: |
cp dist/alga-${{ needs.build.outputs.version }}-py3-none-any.whl alga.whl
- name: Get PyApp
run: |
mkdir pyapp
curl \
--location \
https://github.com/ofek/pyapp/releases/latest/download/source.tar.gz | \
tar xz \
--directory=pyapp \
--strip-components=1
- name: Create binary
env:
PYAPP_PROJECT_NAME: alga
PYAPP_PROJECT_PATH: ../alga.whl
working-directory: pyapp/
run: cargo build --release
- name: Rename
run: cp pyapp/target/release/pyapp alga-linux-amd64
- name: Make built file available
uses: actions/upload-artifact@v4
with:
name: binary
path: alga-linux-amd64