12
12
13
13
env :
14
14
CIBW_TEST_COMMAND : python {project}/tests/test.py
15
- # This is a hack that can be removed when we start using wheels for pybind11
16
- CIBW_BEFORE_BUILD : pip install cmake git+https://github.com/pybind/pybind11.git@master
15
+ # This allows us to test against current master of pybind11.
16
+ CIBW_ENVIRONMENT : " PIP_FIND_LINKS=${{ github.workspace }}/dist"
17
+ PIP_FIND_LINKS : " $GITHUB_WORKSPACE/dist"
17
18
18
19
19
20
jobs :
21
+ build_pybind11 :
22
+ name : Build pybind11 packages from source
23
+ runs-on : ubuntu-latest
24
+
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ with :
28
+ repository : pybind/pybind11
29
+
30
+ - uses : actions/setup-python@v2
31
+
32
+ - name : Download requirements
33
+ run : python -m pip install build
34
+
35
+ - name : Build files
36
+ run : |
37
+ python -m build
38
+
39
+ - uses : actions/upload-artifact@v2
40
+ with :
41
+ name : pybind11
42
+ path : dist/*
43
+
44
+
20
45
build_sdist :
21
46
name : Build SDist
22
47
runs-on : ubuntu-latest
23
48
steps :
24
49
- uses : actions/checkout@v2
50
+
25
51
- uses : actions/setup-python@v2
26
52
27
53
- name : Install deps
41
67
build_wheels :
42
68
name : Wheels on ${{ matrix.os }}
43
69
runs-on : ${{ matrix.os }}
70
+ needs : [build_pybind11]
44
71
strategy :
45
72
fail-fast : false
46
73
matrix :
@@ -51,15 +78,18 @@ jobs:
51
78
52
79
- uses : actions/setup-python@v2
53
80
81
+ - uses : actions/download-artifact@v2
82
+ with :
83
+ name : pybind11
84
+ path : dist
85
+
54
86
- name : Install cibuildwheel
55
87
run : python -m pip install cibuildwheel==1.6.0
56
88
57
89
- name : Build wheel
58
90
run : python -m cibuildwheel --output-dir wheelhouse
59
91
env :
60
- # We have to skip Win 3.5 for now, because it doesn't support PEP 518
61
- # build from a portable install (can re-add when using wheels for pybind11)
62
- CIBW_SKIP : cp27-win* cp35-win*
92
+ CIBW_SKIP : cp27-win*
63
93
64
94
- name : Show files
65
95
run : ls -lh wheelhouse
@@ -79,14 +109,18 @@ jobs:
79
109
build_win27_wheels :
80
110
name : Py 2.7 wheels on Windows
81
111
runs-on : windows-latest
112
+ needs : [build_pybind11]
82
113
83
114
steps :
84
- - uses : actions/checkout@v1
85
- with :
86
- submodules : true
115
+ - uses : actions/checkout@v2
87
116
88
117
- uses : actions/setup-python@v2
89
118
119
+ - uses : actions/download-artifact@v2
120
+ with :
121
+ name : pybind11
122
+ path : dist
123
+
90
124
- name : Install cibuildwheel
91
125
run : python -m pip install cibuildwheel==1.6.0
92
126
0 commit comments