forked from payjoin/rust-payjoin
-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (90 loc) · 2.61 KB
/
python.yml
File metadata and controls
108 lines (90 loc) · 2.61 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
# Copied from [bdk-ffi](https://github.com/bitcoindevkit/bdk-ffi/blob/master/.github/workflows/test-python.yaml)
name: Build and Test Python
on:
pull_request:
paths:
- payjoin-ffi/**
jobs:
build-wheels-and-test:
name: "Build and test wheels with Redis"
runs-on: ubuntu-latest
services:
redis:
image: redis:7-alpine
defaults:
run:
working-directory: payjoin-ffi/python
strategy:
matrix:
include:
- python: "3.9"
- python: "3.10"
- python: "3.11"
- python: "3.12"
- python: "3.13"
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install Rust 1.78.0"
uses: actions-rs/toolchain@v1
with:
toolchain: 1.78.0
- name: "Install Python"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: "Install build dependencies"
run: |
sudo apt update
sudo apt install -y build-essential python3-dev
- name: "Use cache"
uses: Swatinem/rust-cache@v2
- name: "Generate payjoin-ffi.py and binaries"
run: |
PYBIN=$(dirname $(which python))
PYBIN="$PYBIN" bash ./scripts/generate_linux.sh
- name: "Build wheel"
run: python setup.py bdist_wheel --verbose
- name: "Install wheel"
run: pip install ./dist/*.whl
- name: "Run tests"
env:
REDIS_URL: redis://localhost:6379
run: python -m unittest -v
build-macos:
name: "Build and test macOS"
runs-on: macos-13
defaults:
run:
working-directory: payjoin-ffi/python
strategy:
matrix:
python:
- "3.12"
steps:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
- name: "Install Rust 1.78.0"
uses: actions-rs/toolchain@v1
with:
toolchain: 1.78.0
- name: "Install Python"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Setup Docker on macOS
uses: douglascamata/setup-docker-macos-action@v1.0.0
- name: "Use cache"
uses: Swatinem/rust-cache@v2
- name: "Generate payjoin-ffi.py and binaries"
run: bash ./scripts/generate_macos.sh
- name: "Build wheel"
run: python3 setup.py bdist_wheel --verbose
- name: "Install wheel"
run: pip3 install ./dist/*.whl
- name: "Run tests"
env:
REDIS_URL: redis://localhost:6379
run: python3 -m unittest -v