-
Notifications
You must be signed in to change notification settings - Fork 27
53 lines (51 loc) · 1.82 KB
/
windows_release.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
name: Windows release
on:
release:
types:
- created
jobs:
windows:
name: Windows Py${{ matrix.PYTHON_VERSION }}
runs-on: windows-latest
env:
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUNNER_OS: "windows"
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Install latest Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-pc-windows-msvc
override: true
components: rustfmt, clippy
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
activate-environment: test
channels: conda-forge,defaults
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Conda env info
shell: bash -l {0}
run: conda env list
- name: Install winpty
shell: bash -l {0}
run: conda install -y winpty
- name: Install build/test dependencies
shell: bash -l {0}
run: pip install maturin toml
- name: Copy winpty binaries to package
shell: bash -l {0}
run: bash -l .github/scripts/copy_winpty.sh
- name: Build and publish wheels
env:
MATURIN_PASSWORD: ${{secrets.MATURIN_PASSWORD}}
MATURIN_USERNAME: ${{secrets.MATURIN_USERNAME}}
shell: bash -l {0}
run: maturin publish -i $(which python) -u $MATURIN_USERNAME --no-sdist