From e1fe67e7cd91f08aa27bcb629f430db907aa13e4 Mon Sep 17 00:00:00 2001 From: Amine Mouafik Date: Sun, 26 Apr 2020 22:19:11 +0000 Subject: 5.5.0 --- .travis.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index e0fd7b8ae..7579878b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ matrix: + fast_finish: true include: - os: linux dist: xenial @@ -11,27 +12,28 @@ matrix: - libxkbfile-dev - rpm - os: osx + if: branch = release osx_image: xcode11 language: node_js -# Handle git submodules yourself git: submodules: false -# Use sed to replace the SSH URL with the public URL, then initialize submodules +branches: + only: + - develop + - release +cache: npm + before_install: - git submodule update --init --recursive install: - - echo do nothing -before_script: - travis_retry npx lerna bootstrap - travis_retry npm install node-sass -g +before_script: + - npm run lint && npm run test script: - - travis_retry travis_wait 100 npm run build - -cache: npm + - | + if [ $TRAVIS_BRANCH == "release" ]; then + travis_retry travis_wait 100 npm run build + fi -branches: - except: - - i18n - - l10n_master - - l10n_develop -- cgit v1.2.3-54-g00ecf From 517faf0feffe33f17fb6e49818ea8b37ce0d90f0 Mon Sep 17 00:00:00 2001 From: Bennett Date: Sun, 20 Dec 2020 12:01:47 +0100 Subject: Update build config --- .travis.yml | 3 ++- appveyor.yml | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 29d31c4a8..9693eb55a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,8 @@ before_script: script: - | if [ $TRAVIS_BRANCH == "release" ]; then - travis_retry travis_wait 100 npm run build + echo "Building..." + travis_retry travis_wait 100 npm run build -- --publish always -c.publish.provider=github -c.publish.owner=getferdi -c.publish.repo=ferdi -c.mac.identity=null fi - | if [ $TRAVIS_BRANCH == "nightly" ]; then diff --git a/appveyor.yml b/appveyor.yml index d6e909f9c..34ae85b20 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,3 +31,9 @@ for: - npm version prerelease --preid=nightly --no-git-tag-version build_script: - appveyor-retry npm run build -- --publish always -c.publish.provider=github -c.publish.owner=getferdi -c.publish.repo=nightlies +- + branches: + only: + - release + build_script: + - appveyor-retry npm run build -- --publish always -c.publish.provider=github -c.publish.owner=getferdi -c.publish.repo=ferdi -- cgit v1.2.3-54-g00ecf