File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 4343 if : matrix.os == 'windows-latest'
4444 run : |
4545 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"
4848 - name : Run tests
4949 run : |
5050 python -m pip install -U pip setuptools wheel
7777 package-wheel :
7878 runs-on : ${{ matrix.os }}
7979 strategy :
80+ fail-fast : false
8081 matrix :
8182 os : [ubuntu-latest, macos-latest, windows-latest]
8283 steps :
@@ -89,11 +90,11 @@ jobs:
8990 CIBW_BEFORE_BUILD : python scripts/fetch-vendor /tmp/vendor
9091 CIBW_BEFORE_BUILD_WINDOWS : python scripts\fetch-vendor C:\cibw\vendor
9192 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
9394 CIBW_SKIP : cp27-* cp33-* cp34-* cp35-* pp27-*
9495 CIBW_TEST_COMMAND : python -m unittest discover -t {project} -s {project}/tests
9596 run : |
96- pip install cibuildwheel==1.4.2
97+ pip install cibuildwheel
9798 cibuildwheel --output-dir dist
9899 - name : Upload wheels
99100 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:
109109
110110.. code-block :: console
111111
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"
114114
115115 Running the examples
116116--------------------
You can’t perform that action at this time.
0 commit comments