Bug 1519825 - Update grcov to revision 9214a916805838265764f9c69eaed657ea3db021 r=marco

This revision corresponds to grcov 0.4.2

Differential Revision: https://phabricator.services.mozilla.com/D16465

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Calixte Denizet 2019-03-25 17:07:23 +00:00
Родитель fe4fab15e3
Коммит 44a8c68d93
2 изменённых файлов: 5 добавлений и 10 удалений

Просмотреть файл

@ -17,8 +17,7 @@ linux64-grcov:
treeherder:
symbol: TL(grcov)
toolchains:
- linux64-rust-1.28
- linux64-clang-7
- linux64-rust-1.32
macosx64-grcov:
treeherder:
@ -27,8 +26,7 @@ macosx64-grcov:
- trunk
- try
toolchains:
- linux64-rust-1.28
- linux64-clang-7
- linux64-rust-1.32
win64-grcov:
treeherder:
@ -40,5 +38,4 @@ win64-grcov:
run:
toolchain-artifact: public/build/grcov.tar.bz2
toolchains:
- win64-rust-1.28
- win64-clang-cl
- win64-rust-1.32

Просмотреть файл

@ -5,7 +5,7 @@ set -x -e -v
OWNER=marco-c
PROJECT=grcov
PROJECT_REVISION=4ad0dbc35b9614e45812e179176f48bb1f70ccab
PROJECT_REVISION=9214a916805838265764f9c69eaed657ea3db021
# This script is for building rust-size
case "$(uname -s)" in
@ -13,8 +13,6 @@ Linux)
WORKSPACE=$HOME/workspace
UPLOAD_DIR=$HOME/artifacts
COMPRESS_EXT=xz
export CXX=clang++
;;
MINGW*)
WORKSPACE=$PWD
@ -39,7 +37,7 @@ if [ -e Cargo.toml ]; then
mv Cargo.toml Cargo.toml.back
fi
PATH="$WORKSPACE/build/src/clang/bin/:$PWD/rustc/bin:$PATH"
PATH="$PWD/rustc/bin:$PATH"
git clone -n https://github.com/${OWNER}/${PROJECT} ${PROJECT}