-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CI: Adding build for ARM64 #30641
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: Adding build for ARM64 #30641
Changes from all commits
38a6772
854b7f8
900937d
92d0c12
7c85263
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,8 @@ cache: | |
|
||
env: | ||
global: | ||
# Variable for test workers | ||
- PYTEST_WORKERS="auto" | ||
# create a github personal access token | ||
# cd pandas-dev/pandas | ||
# travis encrypt 'PANDAS_GH_TOKEN=personal_access_token' -r pandas-dev/pandas | ||
|
@@ -38,6 +40,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=8 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard)" | ||
|
||
- env: | ||
- JOB="3.6, locale" ENV_FILE="ci/deps/travis-36-locale.yaml" PATTERN="((not slow and not network and not clipboard) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8" SQL="1" | ||
services: | ||
|
@@ -59,9 +65,12 @@ matrix: | |
- mysql | ||
- postgresql | ||
allow_failures: | ||
- dist: bionic | ||
python: 3.9-dev | ||
env: | ||
- arch: arm64 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you have have to have it in both sections (allow_failures) and the top section; they must be identical. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the suggestion. I have added it as suggested and all checks are passing as well. Please review and let me know if any more updates are required. |
||
env: | ||
- JOB="3.7, arm64" PYTEST_WORKERS=8 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard)" | ||
- dist: bionic | ||
python: 3.9-dev | ||
env: | ||
- JOB="3.9-dev" PATTERN="(not slow and not network)" | ||
|
||
before_install: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
dependencies: | ||
- python=3.7.* | ||
|
||
# tools | ||
- cython>=0.29.13 | ||
- pytest>=5.0.1 | ||
- pytest-xdist>=1.21 | ||
- hypothesis>=3.58.0 | ||
|
||
# pandas dependencies | ||
ossdev07 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- botocore>=1.11 | ||
- numpy | ||
- python-dateutil | ||
- pytz | ||
- pip | ||
- pip: | ||
- moto |
Uh oh!
There was an error while loading. Please reload this page.