File tree 2 files changed +14
-11
lines changed
2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -60,16 +60,18 @@ jobs:
60
60
- arch : amd64
61
61
env : P=linux_i686 A=cp38
62
62
# linux_armv7l
63
- - arch : arm64
64
- env : P=linux_armv7l A=cp34m
65
- - arch : arm64
66
- env : P=linux_armv7l A=cp35m
67
- - arch : arm64
68
- env : P=linux_armv7l A=cp36m
69
- - arch : arm64
70
- env : P=linux_armv7l A=cp37m
71
- - arch : arm64
72
- env : P=linux_armv7l A=cp38
63
+ # armv7l is still build using qemu on x86, because it was not easily possible to build for armv7l (The best was armv8l using linux32 wrapper)
64
+ # The tests are disabled for armv7l because installing the required numpy took too long and we hit the maximum allowed travis build time.
65
+ - arch : amd64
66
+ env : P=linux_armv7l A=cp34m ARGS="--disable-tests"
67
+ - arch : amd64
68
+ env : P=linux_armv7l A=cp35m ARGS="--disable-tests"
69
+ - arch : amd64
70
+ env : P=linux_armv7l A=cp36m ARGS="--disable-tests"
71
+ - arch : amd64
72
+ env : P=linux_armv7l A=cp37m ARGS="--disable-tests"
73
+ - arch : amd64
74
+ env : P=linux_armv7l A=cp38 ARGS="--disable-tests"
73
75
# linux_aarch64
74
76
- arch : arm64
75
77
env : P=linux_aarch64 A=cp34m
@@ -120,7 +122,7 @@ script:
120
122
if [ "$TRAVIS_CPU_ARCH" == "amd64" ]; then
121
123
docker run --rm --privileged multiarch/qemu-user-static:register --reset
122
124
fi
123
- - " ./scripts/build/build-arch.sh --platform-tag $P --abi-tag $A --pylon-dir ./pylon_installer"
125
+ - " ./scripts/build/build-arch.sh --platform-tag $P --abi-tag $A --pylon-dir ./pylon_installer $ARGS "
124
126
125
127
deploy :
126
128
provider : releases
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Version 1.6.0
4
4
- Fixed unittests that failed in python 3.8
5
5
- Updated to current pylon version for windows and linux
6
6
- Enabled unittests in CI-builds
7
+ - Fixed aarch64 binary wheel releases on github
7
8
8
9
Version 1.5.4
9
10
- Date 2020-04-16
You can’t perform that action at this time.
0 commit comments