Skip to content

Commit 1227754

Browse files
committed
circleci: Fix build using manylinux2010 image
This commit updates to version manylinux2010 based on Centos6, a more recent version of Centos. See https://www.python.org/dev/peps/pep-0571/ It should address the following error: /work/src/Utilities/cmlibuv/src/unix/linux-core.c: In function ‘uv__platform_loop_init’: /work/src/Utilities/cmlibuv/src/unix/linux-core.c:88:22: error: ‘EPOLL_CLOEXEC’ undeclared (first use in this function) fd = epoll_create1(EPOLL_CLOEXEC); ^
1 parent e839eef commit 1227754

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ references:
2828

2929
x64_build_job: &x64_build_job
3030
docker:
31-
- image: dockcross/manylinux-x64
31+
- image: dockcross/manylinux2010-x64
3232
<<: *ci_steps
3333

3434
x86_build_job: &x86_build_job
3535
docker:
36-
- image: dockcross/manylinux-x86
36+
- image: dockcross/manylinux2010-x86
3737
<<: *ci_steps
3838

3939
no_filters: &no_filters

0 commit comments

Comments
 (0)