Skip to content

Commit 0ae698c

Browse files
author
Dave Kozma
authored
Add Windows build, remove maturin message
Removed the maturin message so that people don't blindly replace it and lose the custom changes.
1 parent 99a6093 commit 0ae698c

File tree

1 file changed

+22
-27
lines changed

1 file changed

+22
-27
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# This file is autogenerated by maturin v1.4.0
2-
# To update, run
3-
#
4-
# maturin generate-ci github
5-
#
61
name: CI
72

83
on:
@@ -49,28 +44,28 @@ jobs:
4944
name: wheels
5045
path: dist
5146

52-
# windows:
53-
# runs-on: windows-latest
54-
# strategy:
55-
# matrix:
56-
# target: [x64, x86]
57-
# steps:
58-
# - uses: actions/checkout@v3
59-
# - uses: actions/setup-python@v4
60-
# with:
61-
# python-version: '3.10'
62-
# architecture: ${{ matrix.target }}
63-
# - name: Build wheels
64-
# uses: PyO3/maturin-action@v1
65-
# with:
66-
# target: ${{ matrix.target }}
67-
# args: --release --out dist --find-interpreter
68-
# sccache: 'true'
69-
# - name: Upload wheels
70-
# uses: actions/upload-artifact@v3
71-
# with:
72-
# name: wheels
73-
# path: dist
47+
windows:
48+
runs-on: windows-latest
49+
strategy:
50+
matrix:
51+
target: [x64, x86]
52+
steps:
53+
- uses: actions/checkout@v3
54+
- uses: actions/setup-python@v4
55+
with:
56+
python-version: '3.10'
57+
architecture: ${{ matrix.target }}
58+
- name: Build wheels
59+
uses: PyO3/maturin-action@v1
60+
with:
61+
target: ${{ matrix.target }}
62+
args: --release --out dist --find-interpreter
63+
sccache: 'true'
64+
- name: Upload wheels
65+
uses: actions/upload-artifact@v3
66+
with:
67+
name: wheels
68+
path: dist
7469

7570
macos_x86:
7671
runs-on: macos-latest

0 commit comments

Comments
 (0)