Skip to content

Commit

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

platform:
os: linux
arch: arm64

steps:
- name: restore-cache
image: drillster/drone-volume-cache
settings:
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


volumes:
- name: cache
host:
path: /tmp/cache

0 comments on commit cd1d09b

Please sign in to comment.