2018-03-08 00:03:45 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: osx
|
2018-05-30 09:23:14 +02:00
|
|
|
env: TARGET=mac
|
2018-03-08 00:03:45 +01:00
|
|
|
osx_image: xcode9.2
|
|
|
|
language: node_js
|
|
|
|
node_js: "9"
|
|
|
|
- os: linux
|
2018-05-30 09:23:14 +02:00
|
|
|
env: TARGET=windows
|
2018-03-08 00:03:45 +01:00
|
|
|
services: docker
|
2018-05-10 00:00:48 +02:00
|
|
|
language: node_js
|
|
|
|
node_js: "9"
|
2018-05-30 09:23:14 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=linux
|
|
|
|
language: node_js
|
|
|
|
node_js: "9"
|
2018-05-10 00:00:48 +02:00
|
|
|
cache: false
|
2018-03-08 00:03:45 +01:00
|
|
|
before_install:
|
|
|
|
- |
|
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
|
|
mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v2.3.1/git-lfs-$([ "$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-2.3.1.tar.gz | tar -xz -C /tmp/git-lfs --strip-components 1
|
|
|
|
export PATH="/tmp/git-lfs:$PATH"
|
2018-05-10 00:00:48 +02:00
|
|
|
else
|
|
|
|
sudo apt-get -qq update
|
|
|
|
sudo apt-get install -y libsecret-1-dev
|
2018-05-30 09:23:14 +02:00
|
|
|
sudo apt-get install --no-install-recommends -y gcc-multilib g++-multilib
|
2018-05-10 00:00:48 +02:00
|
|
|
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.6.0
|
|
|
|
export PATH="$HOME/.yarn/bin:$PATH"
|
2018-03-08 00:03:45 +01:00
|
|
|
fi
|
|
|
|
before_script:
|
|
|
|
- git lfs pull
|
2017-06-21 20:33:32 +02:00
|
|
|
script:
|
2018-03-08 00:03:45 +01:00
|
|
|
- |
|
2018-05-30 09:23:14 +02:00
|
|
|
if [ "$TARGET" == "windows" ]; then
|
2018-03-08 00:03:45 +01:00
|
|
|
docker run --rm \
|
|
|
|
--env-file <(env | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS|APPVEYOR_|CSC_|GH_|GITHUB_|BT_|AWS_|STRIP|BUILD_') \
|
|
|
|
-v ${PWD}:/project \
|
|
|
|
electronuserland/builder:wine \
|
2018-05-30 09:23:14 +02:00
|
|
|
/bin/bash -c "yarn --link-duplicates --pure-lockfile && yarn build --win --publish onTag";
|
2018-03-08 00:03:45 +01:00
|
|
|
fi
|
2018-05-30 09:23:14 +02:00
|
|
|
- if [ "$TARGET" == "mac" ]; then yarn build --publish onTag; fi
|
|
|
|
- if [ "$TARGET" == "linux" ]; then yarn --link-duplicates --pure-lockfile && yarn build --linux --publish onTag; fi
|
2018-03-08 00:03:45 +01:00
|
|
|
addons:
|
2018-03-08 15:29:26 +01:00
|
|
|
artifacts:
|
2018-03-08 16:45:40 +01:00
|
|
|
working_dir: dist
|
2018-03-08 15:29:26 +01:00
|
|
|
paths:
|
2018-03-15 01:22:54 +01:00
|
|
|
- $(git ls-files -o dist/{*.dmg,*.exe,*.deb} | tr "\n" ":")
|
2018-03-08 16:30:57 +01:00
|
|
|
target_paths:
|
2018-05-08 20:17:49 +02:00
|
|
|
- /app/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})
|