mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-10 17:48:50 +08:00
58 lines
1.4 KiB
YAML
58 lines
1.4 KiB
YAML
# The private Nylas monorepo build script. This will build a full signed
|
|
# release for the Nylas Mail client
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- build-essential
|
|
- clang
|
|
- fakeroot
|
|
- g++-4.8
|
|
- git
|
|
- libgnome-keyring-dev
|
|
- xvfb
|
|
- rpm
|
|
- libxext-dev
|
|
- libxtst-dev
|
|
- libxkbfile-dev
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /ci-.*/
|
|
- /stable.*/
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
env: NODE_VERSION=6.9 CC=gcc-4.8 CXX=g++-4.8 DEBUG="electron-packager:*" INSTALL_TARGET=client
|
|
- os: osx
|
|
env: NODE_VERSION=6.9 CC=clang CXX=clang++ SIGN_BUILD=true DEBUG="electron-packager:*" INSTALL_TARGET=client
|
|
|
|
before_install:
|
|
- openssl aes-256-cbc
|
|
-K $encrypted_faf2708e46e2_key
|
|
-iv $encrypted_faf2708e46e2_iv
|
|
-in packages/client-private-plugins/encrypted_certificates/travis/travis-files.tar.enc
|
|
-out packages/client-private-plugins/encrypted_certificates/travis/travis-files.tar
|
|
-d;
|
|
- mkdir app/build/resources/certs;
|
|
- tar xvf packages/client-private-plugins/encrypted_certificates/travis/travis-files.tar
|
|
--directory=app/build/resources/;
|
|
- source app/build/resources/certs/mac/set_unix_env.sh;
|
|
|
|
install:
|
|
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
|
|
- source /tmp/.nvm/nvm.sh
|
|
- nvm install $NODE_VERSION
|
|
- nvm use --delete-prefix $NODE_VERSION
|
|
|
|
script:
|
|
- npm install && npm run build && npm run upload
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|