tweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloud
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.5 KiB
47 lines
1.5 KiB
7 years ago
|
matrix:
|
||
|
include:
|
||
|
- os: osx
|
||
|
osx_image: xcode9.4
|
||
|
language: node_js
|
||
|
node_js: "10"
|
||
|
env:
|
||
|
- ELECTRON_CACHE=$HOME/.cache/electron
|
||
|
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
|
||
9 years ago
|
|
||
7 years ago
|
- os: linux
|
||
7 years ago
|
sudo: required
|
||
7 years ago
|
services: docker
|
||
|
language: generic
|
||
9 years ago
|
branches:
|
||
|
only:
|
||
8 years ago
|
- master
|
||
9 years ago
|
cache:
|
||
|
directories:
|
||
7 years ago
|
- node_modules
|
||
|
- $HOME/.cache/electron
|
||
|
- $HOME/.cache/electron-builder
|
||
9 years ago
|
before_install:
|
||
7 years ago
|
- |
|
||
|
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"
|
||
9 years ago
|
fi
|
||
9 years ago
|
install:
|
||
9 years ago
|
- git config --global core.autocrlf input
|
||
9 years ago
|
- git clone https://github.com/saenzramiro/rambox-build.git $TRAVIS_BUILD_DIR/build/production/Rambox/
|
||
7 years ago
|
before_script:
|
||
|
- git lfs pull
|
||
9 years ago
|
script:
|
||
7 years ago
|
- |
|
||
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||
7 years ago
|
docker run --rm -ti \
|
||
7 years ago
|
--env-file <(env | grep -vE '\r|\n' | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|APPVEYOR_|CSC_|_TOKEN|_KEY|AWS_|STRIP|BUILD_') \
|
||
7 years ago
|
-v ${PWD}:/project \
|
||
|
-v ~/.cache/electron:/root/.cache/electron \
|
||
|
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
|
||
7 years ago
|
electronuserland/builder \
|
||
7 years ago
|
/bin/bash -c "npm i && npm i [email protected] && npm run build:linux"
|
||
7 years ago
|
else
|
||
|
npm run build:osx
|
||
|
fi
|