File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 64
64
script :
65
65
- PLATFORM=$PLATFORM docker/glibc/build.sh all
66
66
before_cache :
67
- - travis-ci/cache_images.sh combined
67
+ - travis-ci/cache_images.sh combined_build
68
68
- << : *manylinux-build
69
69
env :
70
70
- PLATFORM="x86_64"
Original file line number Diff line number Diff line change @@ -5,18 +5,25 @@ case "${1-}" in
5
5
64)
6
6
tags=( quay.io/pypa/manylinux2010_centos-6-with-vsyscall64:latest )
7
7
;;
8
+ combined_build)
9
+ tags=(
10
+ quay.io/pypa/manylinux2010_centos-6-no-vsyscall-build:latest
11
+ quay.io/pypa/manylinux2010_centos-6-no-vsyscall:latest
12
+ )
13
+ ;;
8
14
combined)
9
15
tags=( quay.io/pypa/manylinux2010_centos-6-no-vsyscall:latest )
10
16
;;
11
17
all)
12
18
tags=(
13
19
quay.io/pypa/manylinux2010_centos-6-with-vsyscall32:latest
14
20
quay.io/pypa/manylinux2010_centos-6-with-vsyscall64:latest
21
+ quay.io/pypa/manylinux2010_centos-6-no-vsyscall-build:latest
15
22
quay.io/pypa/manylinux2010_centos-6-no-vsyscall:latest
16
23
)
17
24
;;
18
25
* )
19
- echo " Usage: $0 {32|64|combined|all}" >&2
26
+ echo " Usage: $0 {32|64|combined_build| combined|all}" >&2
20
27
exit 1
21
28
;;
22
29
esac
You can’t perform that action at this time.
0 commit comments