[yocto-autobuilder-helper] [PATCH 2/6] publish-artefacts: Drop eSDK toolchain output from releases
Richard Purdie <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <[email protected]> |
We are currenty publishing a lot of release artefacts which we suspect nobody ever uses. Drop the eSDK output since we don't believe anyone is using them. If needed someone could easily generate what they needed. Signed-off-by: Richard Purdie <[email protected]> --- scripts/publish-artefacts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/publish-artefacts b/scripts/publish-artefacts index 8881b7f..4a1e1b1 100755 --- a/scripts/publish-artefacts +++ b/scripts/publish-artefacts @@ -26,8 +26,8 @@ case "$target" in mkdir -p $DEST/toolchain/i686 mkdir -p $DEST/toolchain/x86_64 sha256sums $TMPDIR/deploy/sdk - cp -R --no-dereference --preserve=links $TMPDIR/deploy/sdk/poky-*i686-core-image* $DEST/toolchain/i686 - cp -R --no-dereference --preserve=links $TMPDIR/deploy/sdk/poky-*x86_64-core-image* $DEST/toolchain/x86_64 + cp -R --no-dereference --preserve=links $TMPDIR/deploy/sdk/poky-*i686-core-image*-toolchain-[0-9]* $DEST/toolchain/i686 + cp -R --no-dereference --preserve=links $TMPDIR/deploy/sdk/poky-*x86_64-core-image*-toolchain-[0-9]* $DEST/toolchain/x86_64 ;; esac