build/upload: new helper

This commit is contained in:
Franco Fichtner 2018-03-14 10:06:45 +01:00
parent 6a47848f17
commit e865e6f2e7
3 changed files with 68 additions and 2 deletions

View File

@ -25,8 +25,8 @@
STEPS= arm base boot chroot clean core distfiles dvd info \
kernel nano plugins ports prefetch print rebase \
release rename serial sign skim test update verify \
vga vm xtools
release rename serial sign skim test update upload \
verify vga vm xtools
SCRIPTS= batch nightly refresh pkg_fingerprint pkg_sign
.PHONY: ${STEPS}

View File

@ -393,6 +393,10 @@ Nightly builds are the only builds that write and archive logs under:
with ./latest pointing to the last nightly build run. Older logs are
archived and available for a number of runs for retrospective analysis.
To push sets and images to a remote location use the upload target:
# make upload-<user@sshtarget>,<set_or_image>[,...]
Last but not least, a refresh of OPNsense core and plugins on package
sets is invoked using:

62
build/upload.sh Normal file
View File

@ -0,0 +1,62 @@
#!/bin/sh
# Copyright (c) 2018 Franco Fichtner <franco@opnsense.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
set -e
SELF=upload
. ./common.sh
if [ -z "${1}" ]; then
echo ">> Missing upload target"
exit 1
fi
SSHTARGET=${1}
# remove first argument
shift
upload()
{
echo ">>> Uploading ${1}..."
(cd ${2}; scp ${3} ${SSHTARGET}:)
}
for ARG in ${@}; do
case ${ARG} in
base|kernel)
upload ${ARG} ${SETSDIR} "${ARG}-*"
;;
packages|release)
upload ${ARG} ${SETSDIR} "${ARG}-*-${PRODUCT_FLAVOUR}-*"
;;
arm|dvd|nano|serial|vga|vm)
upload ${ARG} ${IMAGESDIR} "${ARG}-*-${PRODUCT_FLAVOUR}-*"
;;
esac
done