Skip to content

Commit 500bcd4

Browse files
committed
Unbreak CI
1 parent 6bdb91a commit 500bcd4

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.ci/build-manylinux-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

44
PYTHON ?= python
@@ -9,12 +9,15 @@ _default: compile
99

1010
clean:
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+
1821
clean-libuv:
1922
(cd vendor/libuv; git clean -dfX)
2023

0 commit comments

Comments
 (0)