You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by ra...@apache.org on 2021/03/29 02:38:43 UTC

[incubator-annotator] branch master updated: Try a simplified CI with only one environment

This is an automated email from the ASF dual-hosted git repository.

randall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git


The following commit(s) were added to refs/heads/master by this push:
     new cb67dc1  Try a simplified CI with only one environment
cb67dc1 is described below

commit cb67dc108a218678c278cce24e3be2161e76b447
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sun Mar 28 19:37:51 2021 -0700

    Try a simplified CI with only one environment
---
 .travis.yml | 28 ++++++++++------------------
 1 file changed, 10 insertions(+), 18 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 8135ee6..7f97d29 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,21 +1,13 @@
 dist: focal
 language: node_js
-node_js:
- - "10"
- - "12"
- - "13"
- - "14"
 
-jobs:
-  include:
-    - stage: deploy
-      if: branch = master
-      language: node_js
-      script: skip
-      before_deploy:
-        - git fetch --unshallow
-        - git checkout master
-      deploy:
-        provider: npm
-        edge: true
-        run_script: publish:ci
+before_deploy:
+  - git fetch --unshallow
+  - git checkout master
+
+deploy:
+  provider: npm
+  edge: true
+  run_script: publish:ci
+  on:
+    branch: master