icloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsapp
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.
45 lines
1.4 KiB
45 lines
1.4 KiB
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 |
|
|
|
- os: linux |
|
services: docker |
|
language: generic |
|
branches: |
|
only: |
|
- master |
|
cache: |
|
directories: |
|
- node_modules |
|
- $HOME/.cache/electron |
|
- $HOME/.cache/electron-builder |
|
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" |
|
fi |
|
install: |
|
- git config --global core.autocrlf input |
|
- git clone https://github.com/saenzramiro/rambox-build.git $TRAVIS_BUILD_DIR/build/production/Rambox/ |
|
before_script: |
|
- git lfs pull |
|
script: |
|
- | |
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then |
|
docker run --rm -ti \ |
|
-e GH_TOKEN=$GH_TOKEN \ |
|
-v ${PWD}:/project \ |
|
-v ~/.cache/electron:/root/.cache/electron \ |
|
-v ~/.cache/electron-builder:/root/.cache/electron-builder \ |
|
electronuserland/builder \ |
|
/bin/bash -c "npm i && npm i electron-builder@20.10.0 && npm run build:linux" |
|
else |
|
npm run build:osx |
|
fi
|
|
|