Skip to content

Commit

Permalink
Merge e9508e5 into bc8795d
Browse files Browse the repository at this point in the history
  • Loading branch information
godwhoa committed Feb 6, 2019
2 parents bc8795d + e9508e5 commit 932349d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
kind: pipeline
name: arm64

platform:
os: linux
arch: arm64

steps:
- name: restore-cache
image: drillster/drone-volume-cache
restore: true
mount:
- /root/.cache
volumes:
- /tmp/cache:/cache
- name: all
image: python:3.7.2-stretch
commands:
- pip install -r requirements.txt -vvv
- pip install -r dev-requirements.txt -vvv
- export CYTHON_TRACE=1
- python setup.py develop
- pytest
- python setup.py bdist_wheel
- name: rebuild-cache
image: drillster/drone-volume-cache
settings:
rebuild: true
mount:
- /root/.cache
volumes:
- /tmp/cache:/cache


0 comments on commit 932349d

Please sign in to comment.