-
-
Notifications
You must be signed in to change notification settings - Fork 10
99 lines (87 loc) · 2.92 KB
/
pypi_publish.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
88
89
90
91
92
93
94
95
96
97
98
99
name: Bind from Python/Build wheels and publish to PyPI
on:
release:
types: [published]
jobs:
build:
name: build py3.${{ matrix.python-version }} on ${{ matrix.platform || matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- windows
python-version:
- '9'
- '10'
- '11'
- '12'
include:
- os: ubuntu
platform: linux
- os: windows
ls: dir
runs-on: ${{ format('{0}-latest', matrix.os) }}
steps:
- uses: actions/checkout@v2
- name: set up python
uses: actions/setup-python@v1
with:
python-version: '3.9'
- name: set up rust
if: matrix.os != 'ubuntu'
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: install python dependencies
run: pip install -U setuptools wheel twine cibuildwheel build
- name: build sdist
working-directory: gulagcleaner_python
if: matrix.os == 'ubuntu' && matrix.python-version == '8'
run: |
pip install -U setuptools-rust
python -m build . --sdist
- name: build ${{ matrix.platform || matrix.os }} binaries
run: cibuildwheel gulagcleaner_python --output-dir dist
env:
CIBW_BUILD: 'cp3${{ matrix.python-version }}-*'
CIBW_SKIP: '*-win32 *-musllinux_i686'
CIBW_PLATFORM: ${{ matrix.platform || matrix.os }}
CIBW_ENVIRONMENT: 'PATH="$HOME/.cargo/bin:$PATH"'
CIBW_ENVIRONMENT_WINDOWS: 'PATH="$UserProfile\.cargo\bin;$PATH"'
CIBW_MANYLINUX_X86_64_IMAGE: 'manylinux2014'
CIBW_MANYLINUX_I686_IMAGE: 'manylinux2014'
CIBW_BEFORE_BUILD: >
pip install -U setuptools-rust &&
rustup default nightly &&
rustup show
CIBW_BEFORE_BUILD_LINUX: >
pip install -U setuptools-rust &&
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=nightly --profile=minimal -y &&
rustup show
- name: build windows 32bit binaries
if: matrix.os == 'windows'
run: cibuildwheel gulagcleaner_python --output-dir dist
env:
CIBW_BUILD: 'cp3${{ matrix.python-version }}-win32'
CIBW_PLATFORM: windows
CIBW_ENVIRONMENT: 'PATH="$UserProfile\.cargo\bin;$PATH"'
CIBW_BEFORE_BUILD: >
pip install -U setuptools-rust &&
rustup toolchain install nightly-i686-pc-windows-msvc &&
rustup default nightly-i686-pc-windows-msvc &&
rustup override set nightly-i686-pc-windows-msvc &&
rustup show
- name: list dist files
run: ${{ matrix.ls || 'ls -lh' }} dist/
- name: twine check
run: twine check dist/*
- name: upload to pypi
if: startsWith(github.ref, 'refs/tags/')
run: twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_token }}