From d01d4828a8747bec9e0b601567240bb00a8d0b54 Mon Sep 17 00:00:00 2001 From: Brock Date: Tue, 29 Sep 2020 17:55:01 -0700 Subject: [PATCH 1/3] CI: disable ARM build --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 81cd461dd2c87..aa0b12c316d48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,9 +46,10 @@ matrix: - env: - JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="(not slow and not network and not clipboard)" - - arch: arm64 - env: - - JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)" + # Disabled 2020-09-29 due to timeoutshttps://github.com/pandas-dev/pandas/issues/36719 + # - arch: arm64 + # env: + # - JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)" - env: - JOB="3.7, locale" ENV_FILE="ci/deps/travis-37-locale.yaml" PATTERN="((not slow and not network and not clipboard) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8" SQL="1" From 0705bae1ad225c1e15a3de721c55dd973fd5679d Mon Sep 17 00:00:00 2001 From: Brock Date: Wed, 30 Sep 2020 09:00:29 -0700 Subject: [PATCH 2/3] arm build to allow_failures --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index aa0b12c316d48..8a1d426423ec1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,11 +46,6 @@ matrix: - env: - JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="(not slow and not network and not clipboard)" - # Disabled 2020-09-29 due to timeoutshttps://github.com/pandas-dev/pandas/issues/36719 - # - arch: arm64 - # env: - # - JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)" - - env: - JOB="3.7, locale" ENV_FILE="ci/deps/travis-37-locale.yaml" PATTERN="((not slow and not network and not clipboard) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8" SQL="1" services: @@ -66,6 +61,12 @@ matrix: - mysql - postgresql + allow_failures: + # Moved to allowed_failures 2020-09-29 due to timeouts https://github.com/pandas-dev/pandas/issues/36719 + - arch: arm64 + env: + - JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)" + before_install: - echo "before_install" From 359a5fb176af91c0430195db0a0061b138624672 Mon Sep 17 00:00:00 2001 From: Brock Date: Wed, 30 Sep 2020 10:55:50 -0700 Subject: [PATCH 3/3] restore --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8a1d426423ec1..2ef8e0e03aaf8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,6 +52,10 @@ matrix: - mysql - postgresql + - arch: arm64 + env: + - JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)" + - env: # Enabling Deprecations when running tests # PANDAS_TESTING_MODE="deprecate" causes DeprecationWarning messages to be displayed in the logs