File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ PIP="/opt/python/${PYTHON_VERSION}/bin/pip"
88${PIP} install --upgrade pip wheel
99${PIP} install --upgrade setuptools
1010${PIP} install -r /io/.ci/requirements.txt
11- make -C /io/ PYTHON=" ${PYTHON} " clean compile
11+ make -C /io/ PYTHON=" ${PYTHON} " ci- clean compile
1212${PIP} wheel /io/ -w /io/dist/
1313
1414# Bundle external shared libraries into the wheels.
Original file line number Diff line number Diff line change 1- .PHONY : _default clean clean-libuv distclean compile debug docs test testinstalled release setup-build
1+ .PHONY : _default clean clean-libuv distclean compile debug docs test testinstalled release setup-build ci-clean
22
33
44PYTHON ?= python
@@ -9,12 +9,15 @@ _default: compile
99
1010clean :
1111 rm -fr dist/ doc/_build/ * .egg-info uvloop/loop.* .pyd
12- # rm -fr build/lib.* build/temp.* build/libuv
1312 rm -fr uvloop/* .c uvloop/* .html uvloop/* .so
1413 rm -fr uvloop/handles/* .html uvloop/includes/* .html
1514 find . -name ' __pycache__' | xargs rm -rf
1615
1716
17+ ci-clean : clean
18+ rm -fr build/lib.* build/temp.* build/libuv
19+
20+
1821clean-libuv :
1922 (cd vendor/libuv; git clean -dfX)
2023
You can’t perform that action at this time.
0 commit comments