File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 43
43
if : matrix.os == 'windows-latest'
44
44
run : |
45
45
choco install openssl --no-progress
46
- echo "::set-env name=CL::/IC :\Progra~1\OpenSSL-Win64\include"
47
- echo "::set-env name=LINK::/LIBPATH :C:\Progra~1\OpenSSL-Win64\lib"
46
+ echo "::set-env name=INCLUDE::C :\Progra~1\OpenSSL-Win64\include"
47
+ echo "::set-env name=LIB: :C:\Progra~1\OpenSSL-Win64\lib"
48
48
- name : Run tests
49
49
run : |
50
50
python -m pip install -U pip setuptools wheel
77
77
package-wheel :
78
78
runs-on : ${{ matrix.os }}
79
79
strategy :
80
+ fail-fast : false
80
81
matrix :
81
82
os : [ubuntu-latest, macos-latest, windows-latest]
82
83
steps :
@@ -89,11 +90,11 @@ jobs:
89
90
CIBW_BEFORE_BUILD : python scripts/fetch-vendor /tmp/vendor
90
91
CIBW_BEFORE_BUILD_WINDOWS : python scripts\fetch-vendor C:\cibw\vendor
91
92
CIBW_ENVIRONMENT : AIOQUIC_SKIP_TESTS=ipv6,loss CFLAGS=-I/tmp/vendor/include LDFLAGS=-L/tmp/vendor/lib
92
- CIBW_ENVIRONMENT_WINDOWS : AIOQUIC_SKIP_TESTS=ipv6,loss CL="/IC:\ cibw\vendor\include" LINK="/LIBPATH: C:\cibw\vendor\lib"
93
+ CIBW_ENVIRONMENT_WINDOWS : AIOQUIC_SKIP_TESTS=ipv6,loss INCLUDE=C:\\ cibw\\ vendor\\ include LIB= C:\\ cibw\\ vendor\\ lib
93
94
CIBW_SKIP : cp27-* cp33-* cp34-* cp35-* pp27-*
94
95
CIBW_TEST_COMMAND : python -m unittest discover -t {project} -s {project}/tests
95
96
run : |
96
- pip install cibuildwheel==1.4.2
97
+ pip install cibuildwheel
97
98
cibuildwheel --output-dir dist
98
99
- name : Upload wheels
99
100
uses : actions/upload-artifact@v1
Original file line number Diff line number Diff line change @@ -109,8 +109,8 @@ You will need to set some environment variables to link against OpenSSL:
109
109
110
110
.. code-block :: console
111
111
112
- > $Env:CL = "/IC :\Progra~1\OpenSSL-Win64\include"
113
- > $Env:LINK = "/LIBPATH: C:\Progra~1\OpenSSL-Win64\lib"
112
+ > $Env:INCLUDE = "C :\Progra~1\OpenSSL-Win64\include"
113
+ > $Env:LIB = "C:\Progra~1\OpenSSL-Win64\lib"
114
114
115
115
Running the examples
116
116
--------------------
You can’t perform that action at this time.
0 commit comments