File tree Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 4646 needs : validate-release-request
4747 runs-on : ubuntu-latest
4848
49+ env :
50+ PIP_DISABLE_PIP_VERSION_CHECK : 1
51+
4952 steps :
5053 - uses : actions/checkout@v2
5154 with :
8588 run :
8689 shell : bash
8790
91+ env :
92+ PIP_DISABLE_PIP_VERSION_CHECK : 1
93+
8894 steps :
8995 - uses : actions/checkout@v2
9096 with :
@@ -107,12 +113,12 @@ jobs:
107113 CIBW_BUILD_VERBOSITY : 1
108114 CIBW_BUILD : ${{ matrix.cibw_python }}
109115 CIBW_ARCHS : ${{ matrix.cibw_arch }}
116+ # This is needed for now because cffi has no cp310 wheels
117+ CIBW_BEFORE_ALL_LINUX : " yum -y install libffi-devel"
110118 CIBW_TEST_EXTRAS : " test"
111- CIBW_TEST_COMMAND : " cd .. && python {project}/tests/__init__.py"
112- CIBW_TEST_COMMAND_WINDOWS : " cd .. && python {project}\\ tests\\ __init__.py"
119+ CIBW_TEST_COMMAND : " python {project}/tests/__init__.py"
120+ CIBW_TEST_COMMAND_WINDOWS : " python {project}\\ tests\\ __init__.py"
113121 CIBW_TEST_SKIP : " *universal2:arm64"
114- # This is needed for now because cffi has no cp310 wheels
115- CIBW_BEFORE_BUILD_LINUX : " yum -y install libffi-devel"
116122
117123 - uses : actions/upload-artifact@v2
118124 with :
Original file line number Diff line number Diff line change 1717 python-version : [3.7, 3.8, 3.9, 3.10.0-rc.1]
1818 os : [ubuntu-latest, macos-latest]
1919
20+ env :
21+ PIP_DISABLE_PIP_VERSION_CHECK : 1
22+
2023 steps :
2124 - uses : actions/checkout@v2
2225 with :
5255 - name : Test
5356 if : steps.release.outputs.version == 0
5457 run : |
55- make distclean && make && make test
58+ make test
59+
60+ - name : Test (debug build)
61+ if : steps.release.outputs.version == 0
62+ run : |
5663 make distclean && make debug && make test
5764
5865 # This job exists solely to act as the test job aggregate to be
You can’t perform that action at this time.
0 commit comments