This is an automated email from the git hooks/post-receive script.
maxim.kuvyrkov pushed a change to branch staging
in repository toolchain/abe.
from 2019436 Merge "user the shell USER variable instead of hardcoding the [...]
adds a3c0daf compare_dg_tests.pl: Convert --target option to --unstable-marker
adds 6f9507d Add more unstable tests on qemu
adds 358e4e9 Add unstable gfortran test
No new revisions were added by this update.
Summary of changes:
scripts/compare_dg_tests.pl | 17 +++++++------
scripts/compare_tests | 10 ++++++--
scripts/unstable-tests.txt | 59 +++++++++++++++++++++++++++++----------------
3 files changed, 56 insertions(+), 30 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
maxim.kuvyrkov pushed a change to branch snapshots-ref
in repository toolchain/abe.
was 3ddcf34 Rework handling of reference snapshots used by Jenkins jobs
This change permanently discards the following revisions:
discards 3ddcf34 Rework handling of reference snapshots used by Jenkins jobs
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
maxim.kuvyrkov pushed a change to branch merge
in repository toolchain/abe.
was d416fc6 Merge remote-tracking branches 'origin/merge-clyon' and 'orig [...]
This change permanently discards the following revisions:
discards d416fc6 Merge remote-tracking branches 'origin/merge-clyon' and 'orig [...]
discards f016ec9 Ignore user's .ssh/known_hosts file for ssh'ing into schroot [...]
discards 6e9995a Ignore user's .ssh/known_hosts file for ssh'ing into schroot [...]
discards 9be5c1c Handle make_check return code.
discards 82c9b92 Keep shell debug traces in lib/schroot
discards e3f1a57 Improve debug logs
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
maxim.kuvyrkov pushed a change to branch maxim
in repository toolchain/abe.
was 1d9266a Update list of unstable tests.
This change permanently discards the following revisions:
discards 1d9266a Update list of unstable tests.
discards 60d7c75 Disable ASLR for qemu testing
discards 24188af change wget to use fileserver and remote_snapshots variables
discards e2d8e20 Fix bug in scripts/update-snapshots-ref.sh
discards 75a72fc scripts/update-snapshots-ref.sh: Use specific fileserver
discards 081a29f jenkins.sh: Fetch gerrit changes for gcc repo
discards 64f7a3c Workaround "--checkout all" bug
discards ba301c1 Use non-static qemu for testing (part 2/2)
discards 9e05636 Use normal (non-static) QEMU for testing
discards 15774e3 Robustify runtest check to see if board supports schroots
discards 23879fb Use test-schroot.sh script to finish session when cleaning up
discards 9670dba Improve diagnostic output of parralel scripts
discards 9f610ed Add script to clean stale schroot sessions tcwg-test-*
discards 98a29fb Cleanup schroot sessions on unexpected exit
discards 4ac2dab Remove outdated workaround
discards 03669e9 Revert "Add debugging annotation for jenkins auth failure"
discards 83f1ac9 Add debugging annotation for jenkins auth failure
discards 4863f2f Handle "latest" value for gcc_branch in Backport job
discards e285392 Tame logs printed out to stdout
discards c7a2f36 Update Backport job to use tcwg-ex40-01 for logs
discards abdea34 Update abe_dir in Backport job
discards 88fde88 Switch all aarch64/aarch32 testing to r1-a7.aus
discards ef6b592 Fix path to jenkins.sh
discards 9a13df9 Test on tcwg-ex40-01 instead of tcwg-ex40-09
discards 28ee2f7 Update BuildFarm job to be used from ci.linaro.org
discards e5f8bd7 Fix bug in scripts/update-snapshots-ref.sh
discards 1a92a8c Move script to generate reference snapshots from tcwg-sysadmi [...]
discards f4a8712 Update target boards
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking
in repository toolchain/abe.
commit 0a7fa86ebb6779a3db229be538e32a5bb548d76a
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Fri Jul 31 13:32:57 2015 +0200
Fix CLI-overriding of make_flags
Looks like this was just a typo - I guess there aren't any tests?
Change-Id: I31171dcbc4909758336c37cc7f548a7927fb0b4b
---
abe.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/abe.sh b/abe.sh
index 193534f..a945bd6 100755
--- a/abe.sh
+++ b/abe.sh
@@ -497,7 +497,7 @@ set_package()
;;
makeflags|ma*)
# override_makeflags="${setting}"
- set make_flags="${make_flags} ${setting}"
+ make_flags="${make_flags} ${setting}"
notice "Overriding ${setting} to MAKEFLAGS"
return 0
;;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking
in repository toolchain/abe.
commit 3340d96747ff7e3d79e4ba7fb679b1c89e84a1bf
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Fri Jul 31 12:21:40 2015 +0200
Refactor toolchain download/install code
Pull out into function, add capability to use scp, stop
changing dir as part of the toolchain install process.
Change-Id: I8f1831bbe1d2336aca006d234cc0a52c2860efbc
---
scripts/Benchmark.job | 42 +++++++++++++++++++++++-------------------
1 file changed, 23 insertions(+), 19 deletions(-)
diff --git a/scripts/Benchmark.job b/scripts/Benchmark.job
index dcfa03e..7344bc6 100755
--- a/scripts/Benchmark.job
+++ b/scripts/Benchmark.job
@@ -17,27 +17,39 @@ if test x"${benchmark:-}" = x; then
exit 1
fi
+function get_thing {
+ local thing="$1"
+ if echo x"${thing}" | grep -q '^xhttp'; then
+ wget -q "${thing}"
+ basename "${thing}"
+ else
+ (. host.conf; . "${abe_path}"/lib/remote.sh; remote_download "${prebuilt%%:*}" [...]
+ echo "${prebuilt#*:}"
+ fi
+}
+
#Set up maindir
echo "Building benchmark ${benchmark} in ${maindir}"
chmod 700 "${maindir}"
cd "${maindir}"
+#Configure
+#Must have run configure before first call to get_thing
+echo "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
+ "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
+
#Install toolchain
mkdir bin
-cd bin
-if echo x"${toolchain}" | grep -q '^xhttp'; then
- wget -q "${toolchain}"
- tar xf "`basename ${toolchain}`"
- #TODO: abe way to handle this?
- if test x"${toolchain##.tgz}" = x.tgz; then
- benchgccpath="`echo $PWD/\`basename ${toolchain%%.tgz}\`/bin/*gcc`"
- else
- benchgccpath="`echo $PWD/\`basename ${toolchain%%.tar.*}\`/bin/*gcc`"
- fi
-else
+if test x"${toolchain:0:1}" = x/; then
echo "Toolchain assumed to be path on builder"
benchgccpath="${toolchain}"
+else
+ tarball="`get_thing ${toolchain}`"
+ tar xf "${tarball}" -C bin
+ benchgccpath="`ls ${PWD}/bin/*/bin/*gcc`"
+ rm "${tarball}"
fi
+
if test "`echo ${benchgccpath} | wc -w`" -ne 1; then
echo "Should be exactly one GCC path" 1>&2
echo "Got: ${benchgccpath}" 1>&2
@@ -50,14 +62,6 @@ if test x"${benchgccpath}" != x; then
fi
fi
-#Run benchmark
-echo cd "${maindir}"
- cd "${maindir}"
-
-#Configure
-echo "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
- "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
-
#Build
echo "${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f \"${compi [...]
"${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f "${compi [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch bernie/benchmarking
in repository toolchain/abe.
discards 8e8ee0e Support makeflags in multinode jobs
discards f0f254b Fix CLI-overriding of make_flags
discards 10998ec Permit benchmarking with prebuilt benchmark
discards 58ea108 Refactor toolchain download/install code
new 3340d96 Refactor toolchain download/install code
new 36eafec Permit benchmarking with prebuilt benchmark
new 0a7fa86 Fix CLI-overriding of make_flags
new 4da7fbb Support makeflags in multinode jobs
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (8e8ee0e)
\
N -- N -- N refs/heads/bernie/benchmarking (4da7fbb)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
scripts/Benchmark.job | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.