From: "Matt Turner" <mattst88@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/releng:consolidate-upload commit in: tools/ Date: Sun, 31 Jan 2021 23:08:45 +0000 (UTC) [thread overview] Message-ID: <1612134369.a309ae36ac174b984f4efb20525b0ba8509e91b1.mattst88@gentoo> (raw) commit: a309ae36ac174b984f4efb20525b0ba8509e91b1 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Sun Jan 31 23:06:09 2021 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sun Jan 31 23:06:09 2021 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=a309ae36 tools: Log non-uploaded stages when they finish Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> tools/catalyst-auto-alpha.conf | 3 +++ tools/catalyst-auto-arm.conf | 3 +++ tools/catalyst-auto-arm64.conf | 3 +++ tools/catalyst-auto-hppa.conf | 3 +++ tools/catalyst-auto-ia64.conf | 3 +++ tools/catalyst-auto-ppc.conf | 3 +++ tools/catalyst-auto-ppc64le.conf | 3 +++ tools/catalyst-auto-qemu-arm.conf | 3 +++ tools/catalyst-auto-qemu-riscv.conf | 3 +++ tools/catalyst-auto-s390.conf | 3 +++ tools/catalyst-auto-s390x.conf | 3 +++ tools/catalyst-auto-sparc64.conf | 3 +++ 12 files changed, 36 insertions(+) diff --git a/tools/catalyst-auto-alpha.conf b/tools/catalyst-auto-alpha.conf index f755c9b5..6f52056d 100644 --- a/tools/catalyst-auto-alpha.conf +++ b/tools/catalyst-auto-alpha.conf @@ -45,6 +45,9 @@ post_build() { stage3.spec) upload stage3-*${TIMESTAMP}*.bz2* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-arm.conf b/tools/catalyst-auto-arm.conf index 49495a2c..a323f33d 100644 --- a/tools/catalyst-auto-arm.conf +++ b/tools/catalyst-auto-arm.conf @@ -96,6 +96,9 @@ post_build() { armv7a/stage3-hardfloat-systemd.spec) upload stage3-armv7a_hardfp-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-arm64.conf b/tools/catalyst-auto-arm64.conf index 5346153f..518fa972 100644 --- a/tools/catalyst-auto-arm64.conf +++ b/tools/catalyst-auto-arm64.conf @@ -40,6 +40,9 @@ post_build() { systemd-stage3.spec) upload stage3-${SUBARCH}-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-hppa.conf b/tools/catalyst-auto-hppa.conf index 8ad8f767..d666addf 100644 --- a/tools/catalyst-auto-hppa.conf +++ b/tools/catalyst-auto-hppa.conf @@ -57,6 +57,9 @@ post_build() { hppa2.0/stage3.spec) upload stage3-hppa2.0-*${TIMESTAMP}*.bz2* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-ia64.conf b/tools/catalyst-auto-ia64.conf index 009d5fd9..054f28db 100644 --- a/tools/catalyst-auto-ia64.conf +++ b/tools/catalyst-auto-ia64.conf @@ -39,6 +39,9 @@ post_build() { stage3.spec) upload stage3-*${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf index 3a81822e..dd9904dd 100644 --- a/tools/catalyst-auto-ppc.conf +++ b/tools/catalyst-auto-ppc.conf @@ -48,6 +48,9 @@ post_build() { ppc64/stage3.spec) upload stage3-ppc64-*${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-ppc64le.conf b/tools/catalyst-auto-ppc64le.conf index a93975ca..2803268d 100644 --- a/tools/catalyst-auto-ppc64le.conf +++ b/tools/catalyst-auto-ppc64le.conf @@ -52,6 +52,9 @@ post_build() { musl-hardened-stage3*.spec) upload musl-hardened/stage3-ppc64le-musl-hardened-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-qemu-arm.conf b/tools/catalyst-auto-qemu-arm.conf index e30178dc..efac2eb8 100644 --- a/tools/catalyst-auto-qemu-arm.conf +++ b/tools/catalyst-auto-qemu-arm.conf @@ -97,6 +97,9 @@ post_build() { armv7a/stage3-hardfloat-systemd.spec) upload stage3-armv7a_hardfp-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-qemu-riscv.conf b/tools/catalyst-auto-qemu-riscv.conf index e809b598..261d6db4 100644 --- a/tools/catalyst-auto-qemu-riscv.conf +++ b/tools/catalyst-auto-qemu-riscv.conf @@ -51,6 +51,9 @@ post_build() { stage3*lp64*.spec) upload stage3-rv64_$(echo ${spec}|sed -e 's:^stage3-::g' -e 's:\.spec$::g')-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-s390.conf b/tools/catalyst-auto-s390.conf index 15b5382b..3b8475ba 100644 --- a/tools/catalyst-auto-s390.conf +++ b/tools/catalyst-auto-s390.conf @@ -41,6 +41,9 @@ post_build() { stage3.spec) upload stage3-${SUBARCH}-*${TIMESTAMP}*.tar.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-s390x.conf b/tools/catalyst-auto-s390x.conf index 5a351358..b29d352f 100644 --- a/tools/catalyst-auto-s390x.conf +++ b/tools/catalyst-auto-s390x.conf @@ -41,6 +41,9 @@ post_build() { stage3.spec) upload stage3-${SUBARCH}-*${TIMESTAMP}*.tar.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-sparc64.conf b/tools/catalyst-auto-sparc64.conf index 668971db..0c39a845 100644 --- a/tools/catalyst-auto-sparc64.conf +++ b/tools/catalyst-auto-sparc64.conf @@ -50,6 +50,9 @@ post_build() { sparc64/systemd-stage3.spec) upload stage3-sparc64-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null
WARNING: multiple messages have this Message-ID (diff)
From: "Matt Turner" <mattst88@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/releng:master commit in: tools/ Date: Mon, 1 Feb 2021 04:04:48 +0000 (UTC) [thread overview] Message-ID: <1612134369.a309ae36ac174b984f4efb20525b0ba8509e91b1.mattst88@gentoo> (raw) Message-ID: <20210201040448.y7GcYVDLZ4rXD0smpNIlVPP2NNPIiZbFeEPsFOBc9WU@z> (raw) commit: a309ae36ac174b984f4efb20525b0ba8509e91b1 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Sun Jan 31 23:06:09 2021 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sun Jan 31 23:06:09 2021 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=a309ae36 tools: Log non-uploaded stages when they finish Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> tools/catalyst-auto-alpha.conf | 3 +++ tools/catalyst-auto-arm.conf | 3 +++ tools/catalyst-auto-arm64.conf | 3 +++ tools/catalyst-auto-hppa.conf | 3 +++ tools/catalyst-auto-ia64.conf | 3 +++ tools/catalyst-auto-ppc.conf | 3 +++ tools/catalyst-auto-ppc64le.conf | 3 +++ tools/catalyst-auto-qemu-arm.conf | 3 +++ tools/catalyst-auto-qemu-riscv.conf | 3 +++ tools/catalyst-auto-s390.conf | 3 +++ tools/catalyst-auto-s390x.conf | 3 +++ tools/catalyst-auto-sparc64.conf | 3 +++ 12 files changed, 36 insertions(+) diff --git a/tools/catalyst-auto-alpha.conf b/tools/catalyst-auto-alpha.conf index f755c9b5..6f52056d 100644 --- a/tools/catalyst-auto-alpha.conf +++ b/tools/catalyst-auto-alpha.conf @@ -45,6 +45,9 @@ post_build() { stage3.spec) upload stage3-*${TIMESTAMP}*.bz2* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-arm.conf b/tools/catalyst-auto-arm.conf index 49495a2c..a323f33d 100644 --- a/tools/catalyst-auto-arm.conf +++ b/tools/catalyst-auto-arm.conf @@ -96,6 +96,9 @@ post_build() { armv7a/stage3-hardfloat-systemd.spec) upload stage3-armv7a_hardfp-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-arm64.conf b/tools/catalyst-auto-arm64.conf index 5346153f..518fa972 100644 --- a/tools/catalyst-auto-arm64.conf +++ b/tools/catalyst-auto-arm64.conf @@ -40,6 +40,9 @@ post_build() { systemd-stage3.spec) upload stage3-${SUBARCH}-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-hppa.conf b/tools/catalyst-auto-hppa.conf index 8ad8f767..d666addf 100644 --- a/tools/catalyst-auto-hppa.conf +++ b/tools/catalyst-auto-hppa.conf @@ -57,6 +57,9 @@ post_build() { hppa2.0/stage3.spec) upload stage3-hppa2.0-*${TIMESTAMP}*.bz2* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-ia64.conf b/tools/catalyst-auto-ia64.conf index 009d5fd9..054f28db 100644 --- a/tools/catalyst-auto-ia64.conf +++ b/tools/catalyst-auto-ia64.conf @@ -39,6 +39,9 @@ post_build() { stage3.spec) upload stage3-*${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf index 3a81822e..dd9904dd 100644 --- a/tools/catalyst-auto-ppc.conf +++ b/tools/catalyst-auto-ppc.conf @@ -48,6 +48,9 @@ post_build() { ppc64/stage3.spec) upload stage3-ppc64-*${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-ppc64le.conf b/tools/catalyst-auto-ppc64le.conf index a93975ca..2803268d 100644 --- a/tools/catalyst-auto-ppc64le.conf +++ b/tools/catalyst-auto-ppc64le.conf @@ -52,6 +52,9 @@ post_build() { musl-hardened-stage3*.spec) upload musl-hardened/stage3-ppc64le-musl-hardened-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-qemu-arm.conf b/tools/catalyst-auto-qemu-arm.conf index e30178dc..efac2eb8 100644 --- a/tools/catalyst-auto-qemu-arm.conf +++ b/tools/catalyst-auto-qemu-arm.conf @@ -97,6 +97,9 @@ post_build() { armv7a/stage3-hardfloat-systemd.spec) upload stage3-armv7a_hardfp-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-qemu-riscv.conf b/tools/catalyst-auto-qemu-riscv.conf index e809b598..261d6db4 100644 --- a/tools/catalyst-auto-qemu-riscv.conf +++ b/tools/catalyst-auto-qemu-riscv.conf @@ -51,6 +51,9 @@ post_build() { stage3*lp64*.spec) upload stage3-rv64_$(echo ${spec}|sed -e 's:^stage3-::g' -e 's:\.spec$::g')-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-s390.conf b/tools/catalyst-auto-s390.conf index 15b5382b..3b8475ba 100644 --- a/tools/catalyst-auto-s390.conf +++ b/tools/catalyst-auto-s390.conf @@ -41,6 +41,9 @@ post_build() { stage3.spec) upload stage3-${SUBARCH}-*${TIMESTAMP}*.tar.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-s390x.conf b/tools/catalyst-auto-s390x.conf index 5a351358..b29d352f 100644 --- a/tools/catalyst-auto-s390x.conf +++ b/tools/catalyst-auto-s390x.conf @@ -41,6 +41,9 @@ post_build() { stage3.spec) upload stage3-${SUBARCH}-*${TIMESTAMP}*.tar.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null diff --git a/tools/catalyst-auto-sparc64.conf b/tools/catalyst-auto-sparc64.conf index 668971db..0c39a845 100644 --- a/tools/catalyst-auto-sparc64.conf +++ b/tools/catalyst-auto-sparc64.conf @@ -50,6 +50,9 @@ post_build() { sparc64/systemd-stage3.spec) upload stage3-sparc64-systemd-${TIMESTAMP}*.xz* ;; + *) + echo "Finished ${spec}" + ;; esac popd >/dev/null
next reply other threads:[~2021-01-31 23:08 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-01-31 23:08 Matt Turner [this message] 2021-02-01 4:04 ` [gentoo-commits] proj/releng:master commit in: tools/ Matt Turner -- strict thread matches above, loose matches on Subject: below -- 2021-02-01 4:04 Matt Turner 2021-01-31 23:08 ` [gentoo-commits] proj/releng:consolidate-upload " Matt Turner
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=1612134369.a309ae36ac174b984f4efb20525b0ba8509e91b1.mattst88@gentoo \ --to=mattst88@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /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: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox