Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: scripts/
Date: Thu, 27 Mar 2014 03:09:40
Message-Id: 1395889669.b7c90993c194e2c458e5eaabd2a7dd24f8fb0966.jmbsvicetto@gentoo
1 commit: b7c90993c194e2c458e5eaabd2a7dd24f8fb0966
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 27 03:07:49 2014 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 27 03:07:49 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=b7c90993
7
8 Disable latest-stage3 for amd64 and x86 to avoid confusion for users when some sets fail to build.
9
10 Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>
11
12 ---
13 scripts/copy_buildsync.sh | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16 diff --git a/scripts/copy_buildsync.sh b/scripts/copy_buildsync.sh
17 index 39f7e19..45eddb2 100755
18 --- a/scripts/copy_buildsync.sh
19 +++ b/scripts/copy_buildsync.sh
20 @@ -80,7 +80,8 @@ for ARCH in $ARCHES; do
21 rm -f current-stage3
22 # The "latest stage3" concept doesn't apply to the arm/hppa/s390/sh variants
23 # that are pushed on different days of the week.
24 - if [[ ! $(echo ${outdir} | egrep 'arm|hppa|ppc|s390|sh') ]]; then
25 + # Disable it for amd64/x86 as well as any failures cause confusion to users
26 + if [[ ! $(echo ${outdir} | egrep 'amd64|arm|hppa|ppc|s390|sh|x86') ]]; then
27 ln -sf "$latest_stage3_date" current-stage3
28 fi
29 fi