Просмотр исходного кода

travis: Move codecov from after_success to after_script

We always want to run codecov test, even if there are spurious
failures. We should really work around those failures more, though,
it is starting to annoy me.
Julian Andres Klode лет назад: 9
Родитель
Сommit
374a6efa1d
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -24,7 +24,7 @@ script:
  - sudo chmod  go+x /home/travis
  - sudo chmod  go+x /home/travis
  - sudo chmod -R go+rwX /home/travis/build
  - sudo chmod -R go+rwX /home/travis/build
  - sudo ./test/integration/run-tests -qq
  - sudo ./test/integration/run-tests -qq
-after_success:
+after_script:
  - cd build
  - cd build
  - gcov -r $(find -name '*.gcno')
  - gcov -r $(find -name '*.gcno')
  - bash <(curl -s https://codecov.io/bash)
  - bash <(curl -s https://codecov.io/bash)