File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ dist: bionic
1919
2020language : minimal
2121
22+ cache :
23+ directories :
24+ - $TRAVIS_BUILD_DIR/.docker
25+
2226addons :
2327 apt :
2428 packages :
@@ -29,6 +33,14 @@ services:
2933
3034jobs :
3135 include :
36+ - name : " C++ on ARM"
37+ os : linux
38+ arch : arm64
39+ env :
40+ ARCH : arm64v8
41+ ARROW_CI_MODULES : " CPP"
42+ DOCKER_IMAGE_ID : ubuntu-cpp
43+ UBUNTU : " 20.04"
3244 - name : " C++ on s390x"
3345 os : linux
3446 arch : s390x
@@ -64,7 +76,7 @@ before_install:
6476 arrow_ci_affected=no
6577 for arrow_ci_module in ${ARROW_CI_MODULES}; do
6678 arrow_ci_affected_variable=ARROW_CI_${arrow_ci_module}_AFFECTED
67- if [ "$(eval ' echo $ {arrow_ci_affected_variable}' )" ! = "1" ]; then
79+ if [ "$(eval " echo \$$ {arrow_ci_affected_variable}" )" = "1" ]; then
6880 arrow_ci_affected=yes
6981 fi
7082 done
@@ -101,4 +113,7 @@ script:
101113
102114after_success :
103115 - |
104- archery docker push ${DOCKER_IMAGE_ID} || :
116+ if [ "${TRAVIS_EVENT_TYPE}" = "push" -a \
117+ "${TRAVIS_REPO_SLUG}" = "apache/arrow" ]; then
118+ archery docker push ${DOCKER_IMAGE_ID} || :
119+ fi
You can’t perform that action at this time.
0 commit comments