Skip to content

Commit

Permalink
excluding desktop build from deployment jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ohager committed Sep 14, 2019
1 parent cdae963 commit 208f965
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ before_script:
jobs:
include:
- stage: prepare
name: "Build App"
script: './scripts/ci/build-electron.sh'
name: "Run BurstJS Tests"
script: './scripts/ci/test-burstjs.sh'
- # parallel run
name: "Bundle BurstJS"
script: './scripts/ci/bundle-burstjs.sh'
- # parallel run
name: "Run BurstJS Tests"
script: './scripts/ci/test-burstjs.sh'
- # parallel run
name: "Run Angular Tests"
script: './scripts/ci/test-ng.sh'
- stage: desktop-build
name: "Build Desktop App"
script: './scripts/ci/build-electron.sh'
- stage: desktop-deploy
name: "Build and Deploy Desktop App"
script: './scripts/ci/release-desktop.sh --publish'
Expand All @@ -41,6 +41,8 @@ jobs:

stages:
- prepare
- name: desktop-build
if: type!=cron AND tag!=~/^desktop-\d+\.\d+\.\d+/ AND branch!=~/^force-deploy/
- name: desktop-deploy
if: tag=~/^desktop-\d+\.\d+\.\d+/
- name: force-deploy
Expand Down

0 comments on commit 208f965

Please sign in to comment.