All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jan Kiszka" <jan.kiszka@siemens.com>
To: cip-dev@lists.cip-project.org,
	Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
Subject: Re: [cip-dev] [isar-cip-core][Resend PATCH 1/4] scripts/deploy-cip-core.sh: Fix uploading tar.gz image
Date: Tue, 11 May 2021 15:30:57 +0200	[thread overview]
Message-ID: <b391a367-a2b6-8e62-a8d1-8a1fffb1395f@siemens.com> (raw)
In-Reply-To: <20210510014011.66494-1-nobuhiro1.iwamatsu@toshiba.co.jp>

[-- Attachment #1: Type: text/plain, Size: 1699 bytes --]

On 10.05.21 03:40, Nobuhiro Iwamatsu wrote:
> Since *.wic.img is always compressed, if this file does not exist (for
> example, the extension is tar.gz), the image file upload will fail.
> This will check for the extension of the file.
> 
> Signed-off-by: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
> ---
>  scripts/deploy-cip-core.sh | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/scripts/deploy-cip-core.sh b/scripts/deploy-cip-core.sh
> index 5b7eab9..3593d51 100755
> --- a/scripts/deploy-cip-core.sh
> +++ b/scripts/deploy-cip-core.sh
> @@ -24,14 +24,17 @@ if [ "${EXTENSION}" != "base" ] ; then
>  	BASE_PATH=build/tmp/deploy/images/$TARGET/cip-core-image-cip-core-$RELEASE-$TARGET-$EXTENSION
>  fi
>  
> -echo "Compressing cip-core-image-cip-core-$RELEASE-$TARGET.wic.img..."
> -xz -9 -k $BASE_PATH.wic.img
> +if [ -f $BASE_PATH.wic.img ] ; then
> +	echo "Compressing cip-core-image-cip-core-$RELEASE-$TARGET.wic.img..."
> +	xz -9 -k $BASE_PATH.wic.img
>  
> -echo "Uploading artifacts..."
> -aws s3 cp --no-progress $BASE_PATH.wic.img.xz s3://download.cip-project.org/cip-core/$TARGET/
> +	echo "Uploading artifacts..."
> +	aws s3 cp --no-progress $BASE_PATH.wic.img.xz s3://download.cip-project.org/cip-core/$TARGET/
> +fi
>  
>  if [ -f $BASE_PATH.tar.gz ]; then
> -    aws s3 cp --no-progress $BASE_PATH.tar.gz s3://download.cip-project.org/cip-core/$TARGET/
> +	echo "Uploading artifacts..."
> +	aws s3 cp --no-progress $BASE_PATH.tar.gz s3://download.cip-project.org/cip-core/$TARGET/
>  fi
>  
>  KERNEL_IMAGE=$BASE_PATH-vmlinuz
> 
> 

Thanks, all 4 applied.

Jan

-- 
Siemens AG, T RDA IOT
Corporate Competence Center Embedded Linux

[-- Attachment #2: Type: text/plain, Size: 428 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6448): https://lists.cip-project.org/g/cip-dev/message/6448
Mute This Topic: https://lists.cip-project.org/mt/82710800/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/4520388/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


      parent reply	other threads:[~2021-05-11 13:50 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-10  1:40 [cip-dev] [isar-cip-core][Resend PATCH 1/4] scripts/deploy-cip-core.sh: Fix uploading tar.gz image Nobuhiro Iwamatsu
2021-05-10  1:40 ` [cip-dev] [isar-cip-core][Resend PATCH 2/4] scripts/deploy-cip-core.sh: Fix to correct filename with security extension Nobuhiro Iwamatsu
2021-05-10  1:40 ` [cip-dev] [isar-cip-core][Resend PATCH 3/4] .gitlab-ci.yml: Drop 'deploy: disable' from build:qemu-amd64-base Nobuhiro Iwamatsu
2021-05-10  1:40 ` [cip-dev] [isar-cip-core][Resend PATCH 4/4] .gitlab-ci.yml: Add build:qemu-amd64-test target Nobuhiro Iwamatsu
2021-05-11 13:30 ` Jan Kiszka [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b391a367-a2b6-8e62-a8d1-8a1fffb1395f@siemens.com \
    --to=jan.kiszka@siemens.com \
    --cc=cip-dev@lists.cip-project.org \
    --cc=nobuhiro1.iwamatsu@toshiba.co.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.