-
-
Notifications
You must be signed in to change notification settings - Fork 71
87 lines (78 loc) · 2.52 KB
/
pythonapp.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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pya2ldb
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
continue-on-error: true
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest] # , ubuntu-latest, macos-13, macos-14
# cibw_archs: ["x86_64", ""]
#include:
# - os: ubuntu-latest
# cibw_archs: "aarch64"
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Setup Python3-Dev
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install -y python3-dev
- name: Install Java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Build wheel
uses: pypa/[email protected]
- uses: actions/upload-artifact@v4
with:
# path: ./dist/*.whl
# include-hidden-files: true
# retention-days: 1
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build sdist
run: |
pip install -U build
python -m build --sdist
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
include-hidden-files: true
retention-days: 1
upload_pypi:
needs: [build_wheels, build_sdist] # , build_sdist
runs-on: ubuntu-latest
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/[email protected]
with:
# name: artifact
path: dist
merge-multiple: true
# pattern: dist/*
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}