Browse Source

build: One command per upload

David Cramer 6 years ago
parent
commit
e41b24255d
1 changed files with 7 additions and 7 deletions
  1. 7 7
      .travis.yml

+ 7 - 7
.travis.yml

@@ -52,13 +52,13 @@ after_failure:
   - dmesg | tail -n 100
   - dmesg | tail -n 100
 
 
 after_script:
 after_script:
-  - zeus upload -t "text/xml+xunit" .artifacts/*.junit.xml
-    -t "text/xml+coverage" .artifacts/*.coverage.xml
-    -t "text/xml+coverage" .artifacts/coverage/cobertura-coverage.xml
-    -t "text/html+pytest" .artifacts/*.pytest.html
-    -t "text/plain+pycodestyle" .artifacts/*.pycodestyle.log
-    -t "text/xml+checkstyle" .artifacts/*.checkstyle.xml
-    -t "application/webpack-stats+json" .artifacts/webpack-stats.json
+  - zeus upload -t "text/xml+xunit" .artifacts/*junit.xml
+  - zeus upload -t "text/xml+coverage" .artifacts/*coverage.xml
+  - zeus upload -t "text/xml+coverage" .artifacts/coverage/cobertura-coverage.xml
+  - zeus upload -t "text/html+pytest" .artifacts/*pytest.html
+  - zeus upload -t "text/plain+pycodestyle" .artifacts/*pycodestyle.log
+  - zeus upload -t "text/xml+checkstyle" .artifacts/*checkstyle.xml
+  - zeus upload -t "application/webpack-stats+json" .artifacts/*webpack-stats.json
 
 
 # each job in the matrix inherits `env/global` and uses everything above,
 # each job in the matrix inherits `env/global` and uses everything above,
 # but custom `services`, `before_install`, `install`, and `before_script` directives
 # but custom `services`, `before_install`, `install`, and `before_script` directives