mirror of
				https://github.com/Foundry376/Mailspring.git
				synced 2025-11-04 11:29:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			591 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			591 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
env:
 | 
						|
  global:
 | 
						|
    - NYLAS_ACCESS_TOKEN=cb200be7c921f73a1c35930f6a4ac8758b271be0
 | 
						|
 | 
						|
compiler: clang
 | 
						|
 | 
						|
matrix:
 | 
						|
  include:
 | 
						|
    - os: linux
 | 
						|
      env: NODE_VERSION=0.10
 | 
						|
    - os: linux
 | 
						|
      env: NODE_VERSION=0.12
 | 
						|
    - os: osx
 | 
						|
      env: NODE_VERSION=0.10
 | 
						|
    - os: osx
 | 
						|
      env: NODE_VERSION=0.12
 | 
						|
 | 
						|
sudo: false
 | 
						|
 | 
						|
install:
 | 
						|
  - git clone https://github.com/creationix/nvm.git /tmp/.nvm
 | 
						|
  - source /tmp/.nvm/nvm.sh
 | 
						|
  - nvm install $NODE_VERSION
 | 
						|
  - nvm use $NODE_VERSION
 | 
						|
 | 
						|
script: script/cibuild
 | 
						|
 | 
						|
addons:
 | 
						|
  apt:
 | 
						|
    packages:
 | 
						|
    - build-essential
 | 
						|
    - git
 | 
						|
    - libgnome-keyring-dev
 | 
						|
    - fakeroot
 |