Browse Source

Remove verbose, otherwise the logs get filled with useless info

Daniel García 6 years ago
parent
commit
aeb4b4c8a5
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .travis.yml
  2. 1 1
      azure-pipelines.yml

+ 1 - 1
.travis.yml

@@ -6,4 +6,4 @@ cache: cargo
 
 # Nothing to install
 install: true
-script: cargo build --verbose --all-features
+script: cargo build --all-features

+ 1 - 1
azure-pipelines.yml

@@ -13,5 +13,5 @@ steps:
     cargo -V
   displayName: Query rust and cargo versions
 
-- script : cargo build --verbose --all-features
+- script : cargo build --all-features
   displayName: 'Build project'