20 lines
960 B
YAML
20 lines
960 B
YAML
pipeline:
|
|
build:
|
|
image: registry.i.wit.com/toby/packager:1.3
|
|
commands:
|
|
- export ARCH=amd64
|
|
- export DEBNAME=wit-pxeboot-$ARCH
|
|
- ln -s debian-$ARCH debian
|
|
- echo "$DEBNAME (1.0.$(date +%Y.%m.%d.%H.%M)) unstable; urgency=low\n\n$(git log --format=" * %s")\n\n -- wit <netops@wit.com> $(date -R)" >debian/changelog
|
|
- ./create_pxeinitrd.sh
|
|
- dpkg-buildpackage --no-sign
|
|
- ls -lha ../$DEBNAME_*_all.deb
|
|
- echo "$SSH_KEY" >/tmp/id_rsa
|
|
- chmod 600 /tmp/id_rsa
|
|
- scp -i /tmp/id_rsa -o StrictHostKeyChecking=no ../$DEBNAME_*_all.deb debcore@mirrors.wit.com:/data/incoming/${DRONE_BRANCH/master/experimental}
|
|
secrets: [ ssh_key ]
|
|
branches:
|
|
- master
|
|
- staging
|
|
- main
|