From 7dd4b38d1a818fef48d53b74a3de08d1b37fc491 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Mon, 4 May 2020 15:55:35 -0400 Subject: [PATCH] Remove invalid flag for coverage job The coverage job requires setting the -Zno-landing-pads flag, however on the current version of rust nightly this flag has been removed (see: rust-lang/rust#70175) and the job is no longer working. This commit works around this by removing the flag to fix the job (see mozilla/grcov#427 for more details). --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c0dad02b5..7cc2da206 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,7 +59,7 @@ jobs: - pip install -U setuptools-rust - gem install coveralls-lcov - export CARGO_INCREMENTAL=0 - - export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads" + - export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off" - python setup.py develop script: - export CARGO_INCREMENTAL=0