Compare commits

..

1 Commits

Author SHA1 Message Date
Dustin 55d1f69b93 draft: ci: Build wheels and publish to wheelhost 2019-02-16 11:17:32 -06:00
2 changed files with 6 additions and 2 deletions

4
ci/Jenkinsfile vendored
View File

@ -5,6 +5,10 @@ pipeline {
}
}
triggers {
pollSCM ''
}
environment {
PUBLISH_HOST = 'file0.pyrocufflink.blue'
XDG_CACHE_DIR = "${WORKSPACE}"

View File

@ -1,3 +1,3 @@
: ${PUBLISH_PATH:-/var/lib/wheels}
: ${PUBLISH_PATH:=/var/lib/wheels}
rsync -aP --delete --include '*.whl' dist/ ${PUIBLISH_HOST}:${PUBLISH_PATH%/}/
rsync -aP --delete --include '*.whl' dist/ ${PUBLISH_HOST}:${PUBLISH_PATH%/}/