Skip to content

Commit 70d0618

Browse files
committed
enable arm64 build on drone.io pandas-dev#39730
1 parent 0c18cc6 commit 70d0618

File tree

3 files changed

+22
-78
lines changed

3 files changed

+22
-78
lines changed

.drone.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
kind: pipeline
2+
type: docker
3+
name: py37-amd64
4+
5+
platform:
6+
arch: amd64
7+
8+
steps:
9+
- name: test
10+
image: python:3.7
11+
commands:
12+
- pip install -r requirements-dev.txt
13+
- python setup.py build_ext -j 4
14+
- python -m pip install -e . --no-build-isolation --no-use-pep517
15+
- 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
16+
17+
trigger:
18+
branch:
19+
- master
20+
- feature/*
21+
event:
22+
- push

.travis.yml

Lines changed: 0 additions & 78 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)