From 57425487c35c30ecea00b28a002d3a8914e565db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 26 Aug 2018 19:00:38 +0200 Subject: turris3x: build in parallel and sign --- jobs/turris3x-omnia.env | 2 ++ templates/turris3x.run | 14 +++++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/jobs/turris3x-omnia.env b/jobs/turris3x-omnia.env index 7696b37..85fca4b 100644 --- a/jobs/turris3x-omnia.env +++ b/jobs/turris3x-omnia.env @@ -1 +1,3 @@ +BOARD=omnia +ARCH=mvebu-musl SDK_URI=https://repo.turris.cz/omnia-nightly/OpenWrt-SDK-mvebu_gcc-4.8-linaro_musl-1.1.15_eabi.Linux-x86_64.tar.bz2 diff --git a/templates/turris3x.run b/templates/turris3x.run index cab1217..982b1e6 100755 --- a/templates/turris3x.run +++ b/templates/turris3x.run @@ -19,7 +19,15 @@ echo_stage "Copy packages" cp -r ../pkgs/* package/ echo_stage "Build" -make -j1 V=99 +make -j4 -# TODO sign -# TODO copy to repository +echo_stage "Sign" +./staging_dir/host/bin/usign -S -s ~/openwrt-repo.key -m "bin/$ARCH/packages/base/Packages" + +exit 0 # Disable deploy for now (ssh is not configured yet) +echo_stage "Deploy" +scp -r "bin/$ARCH/packages/base" cynerd.cz:/tmp/deploy-turris3x-$BOARD +ssh cynerd.cz /bin/sh -ex <