lbry-desktop/.travis.yml

50 lines
1.8 KiB
YAML
Raw Normal View History

matrix:
include:
- os: osx
2018-05-30 09:23:14 +02:00
env: TARGET=mac
osx_image: xcode9.2
language: node_js
node_js: "9"
- os: linux
2018-05-30 09:23:14 +02:00
env: TARGET=windows
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
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"
fi
before_script:
- git lfs pull
2017-06-21 20:33:32 +02:00
script:
- |
2018-05-30 09:23:14 +02:00
if [ "$TARGET" == "windows" ]; then
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";
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
addons:
artifacts:
2018-03-08 16:45:40 +01:00
working_dir: dist
paths:
- $(git ls-files -o dist/{*.dmg,*.exe,*.deb} | tr "\n" ":")
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})