From 7cb051c3dafde864157665ac4411346639eb325c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 11 Apr 2019 15:16:35 +0200 Subject: Update stable16 target versions Signed-off-by: Joas Schilling --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 090bd94..b0e40ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ cache: env: global: - - CORE_BRANCH=master + - CORE_BRANCH=stable16 - APP_NAME=notifications matrix: - DB=sqlite -- cgit v1.2.3 From 46a0d915856485e82eb178e9e33222b6450fbb56 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 12 Apr 2019 09:49:47 +0200 Subject: Adjust drone config to v1.0 Signed-off-by: Joas Schilling --- .drone.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.drone.yml b/.drone.yml index ad2e969..4681850 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,16 +1,16 @@ -clone: - git: - image: plugins/git - depth: 1 +kind: pipeline +name: vue-build -pipeline: - vue-build-check: +steps: + - name: vue-build-check image: node commands: - - ./tests/vue-build.sh ./js/notifications.js - when: - matrix: - TESTS: vue-build-check -matrix: - include: - - TESTS: vue-build-check + - ./tests/vue-build.sh ./js/notifications.js + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push -- cgit v1.2.3