Skip to content

Commit 74237d8

Browse files
committed
Exclude i686
1 parent 0a34796 commit 74237d8

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

.travis.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,42 @@ branches:
66

77
env:
88
global:
9+
- OPENPMD_GIT_REF="0.11.1-alpha"
10+
911
# (1,2) Skip building for Python 2.7 on all platforms
10-
- CIBW_SKIP="cp27-* pp27-*"
12+
# (3) GNU 7.3.1 & MPark.Variant 1.4.0 on i686:
13+
# https://github.com/pypa/manylinux/issues/543
14+
# variant.hpp:2241:9: internal compiler error:
15+
# unexpected expression ‘I’ of kind template_parm_index
16+
# typename T = lib::type_pack_element_t<I, Ts...>,
17+
- CIBW_SKIP="cp27-* pp27-* *-manylinux_i686"
1118
# Install dependencies on Linux and OSX
1219
- CIBW_BEFORE_BUILD="bash -x .github/library_builders.sh"
1320

1421
jobs:
1522
include:
1623
# perform a linux ARMv8 build
17-
- services: docker
18-
arch: aarch64
24+
# blocked by https://github.com/scikit-build/cmake-python-distributions/issues/96
25+
# https://github.com/pypa/manylinux/issues/544
26+
# - services: docker
27+
# arch: arm64
28+
# env:
29+
# - CIBW_BUILD="*_aarch64"
1930

2031
# perform a linux PPC64LE build
2132
# blocked by https://github.com/pypa/auditwheel/issues/36
2233
# https://github.com/pypa/auditwheel/pull/213
2334
# - services: docker
2435
# arch: ppc64le
36+
# env:
37+
# - CIBW_BUILD="*_ppc64le"
2538

2639
# perform a linux S390X build
2740
# blocked by https://github.com/GTkorvo/dill/issues/15
2841
# - services: docker
2942
# arch: s390x
43+
# env:
44+
# - CIBW_BUILD="*_s390x"
3045

3146
# and a build for old macOS versions (10.13 with xcode9.4.1 ~2017)
3247
- os: osx
@@ -35,7 +50,7 @@ jobs:
3550
python: 3.6
3651

3752
install:
38-
- git clone --branch 0.11.1-alpha --depth 1 https://github.com/openPMD/openPMD-api.git src
53+
- git clone --branch ${OPENPMD_RELEASE} --depth 1 https://github.com/openPMD/openPMD-api.git src
3954
- cp library_builders.sh src/.github/
4055
- python3 -m pip install cibuildwheel==1.3.0
4156

0 commit comments

Comments
 (0)