-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
CI: enable arm64 build on drone.io #39730 #39742
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
Closed
Closed
Changes from 21 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
70d0618
enable arm64 build on drone.io #39730
fangchenli 9684d73
enable ci on pr
fangchenli 4a289a9
check arch
fangchenli 0e2659c
fixi arch
fangchenli 4b68143
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 61a613d
update pip
fangchenli 938c751
fix install
fangchenli 2cf90ef
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli a2d5f0e
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 2988f27
use minimal deps
fangchenli 80670a9
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 46237e7
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli b558c72
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli d5e95ea
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli cae3548
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 5eb3ebf
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 88236f2
seperate steps, add git tags
fangchenli c4552ba
seperate steps, add shared venv
fangchenli b68fe1c
xfail arm64 tests
fangchenli 73dfa45
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 5e8d6fc
sort import
fangchenli fc41c0c
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 66f0e3e
remove arm_slow marker
fangchenli e8d5713
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 3bc9d12
skip slow arm test
fangchenli 7fc92d9
sort import
fangchenli 99de571
skip slow arm64 tests
fangchenli accad8f
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli db97957
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli 9281217
Merge remote-tracking branch 'upstream/master' into drone-ci
fangchenli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
kind: pipeline | ||
type: docker | ||
name: py37-arm64 | ||
|
||
platform: | ||
arch: arm64 | ||
|
||
steps: | ||
- name: Fetch Tags | ||
image: alpine/git | ||
commands: | ||
- git fetch --tags | ||
|
||
- name: Setup Environment | ||
image: python:3.7 | ||
commands: | ||
- python -m venv pandas-dev | ||
- . pandas-dev/bin/activate | ||
- python -m pip install --upgrade pip setuptools | ||
- python -m pip install cython numpy python-dateutil pytz pytest pytest-xdist hypothesis | ||
|
||
- name: Build Pandas | ||
image: python:3.7 | ||
commands: | ||
- . pandas-dev/bin/activate | ||
- python setup.py build_ext -j 4 | ||
- python -m pip install -e . --no-build-isolation --no-use-pep517 | ||
|
||
- name: Run Test | ||
image: python:3.7 | ||
commands: | ||
- . pandas-dev/bin/activate | ||
- pytest -m "(not slow and not network and not clipboard and not arm_slow)" -n 2 --dist=loadfile -s --strict-markers --durations=30 --junitxml=test-data.xml pandas | ||
|
||
trigger: | ||
branch: | ||
- master | ||
- feature/* | ||
event: | ||
- push | ||
- pull_request |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.