diff --git a/.Jenkinsfile b/.Jenkinsfile index 0b3ae83..6cabf61 100644 --- a/.Jenkinsfile +++ b/.Jenkinsfile @@ -5,7 +5,7 @@ pipeline { agent { docker { image 'evolix/gbp:bullseye' - args '-u root --privileged -v /tmp:/tmp' + args '-u root --privileged' } } when { @@ -29,8 +29,8 @@ pipeline { steps { script { sh 'echo Dummy line to remove once something actually happens.' - /* No crendentials yet - sh 'rsync -avP /tmp/bkctld/ droneci@pub.evolix.net:/home/droneci/bkctld/' + /* No crendentials yet. + sh 'rsync -avP bkctld* droneci@pub.evolix.net:/home/droneci/bkctld/' */ } } diff --git a/.drone.yml b/.drone.yml index cd183e5..97a9e97 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,9 +15,6 @@ steps: - mk-build-deps --install --remove debian/control - git clean --force - gbp buildpackage -us -uc - volumes: - - name: tmp - path: /tmp when: branch: - debian @@ -31,16 +28,8 @@ steps: key: from_secret: drone_private_key target: /home/droneci/bkctld/ - source: /tmp/bkctld/ + source: ../bkctld* delete: true - volumes: - - name: tmp - path: /tmp when: branch: - debian - -volumes: -- name: tmp - host: - path: /tmp