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"
8
8
${PIP} install --upgrade pip wheel
9
9
${PIP} install --upgrade setuptools
10
10
${PIP} install -r /io/.ci/requirements.txt
11
- make -C /io/ PYTHON=" ${PYTHON} " clean compile
11
+ make -C /io/ PYTHON=" ${PYTHON} " ci- clean compile
12
12
${PIP} wheel /io/ -w /io/dist/
13
13
14
14
# 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
2
2
3
3
4
4
PYTHON ?= python
@@ -9,12 +9,15 @@ _default: compile
9
9
10
10
clean :
11
11
rm -fr dist/ doc/_build/ * .egg-info uvloop/loop.* .pyd
12
- # rm -fr build/lib.* build/temp.* build/libuv
13
12
rm -fr uvloop/* .c uvloop/* .html uvloop/* .so
14
13
rm -fr uvloop/handles/* .html uvloop/includes/* .html
15
14
find . -name ' __pycache__' | xargs rm -rf
16
15
17
16
17
+ ci-clean : clean
18
+ rm -fr build/lib.* build/temp.* build/libuv
19
+
20
+
18
21
clean-libuv :
19
22
(cd vendor/libuv; git clean -dfX)
20
23
You can’t perform that action at this time.
0 commit comments