mirror of
https://github.com/atom/atom.git
synced 2026-02-02 10:45:14 -05:00
39 lines
726 B
YAML
39 lines
726 B
YAML
machine:
|
|
environment:
|
|
XCODE_SCHEME: test
|
|
XCODE_WORKSPACE: test
|
|
XCODE_PROJECT: test
|
|
|
|
xcode:
|
|
version: 7.3
|
|
|
|
general:
|
|
artifacts:
|
|
- out/atom-mac.zip
|
|
- out/atom-mac-symbols.zip
|
|
|
|
dependencies:
|
|
pre:
|
|
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | bash
|
|
- nvm install 4.4.7
|
|
- nvm use 4.4.7
|
|
- npm install -g npm
|
|
|
|
override:
|
|
- script/bootstrap
|
|
- build/build.js
|
|
|
|
post:
|
|
- cd out/Atom-darwin-x64 && zip -r ../atom-mac.zip ./Atom.app && cd -
|
|
- cd out && zip -r ./atom-mac-symbols.zip ./symbols && cd -
|
|
|
|
cache_directories:
|
|
- cache
|
|
- apm/node_modules
|
|
- build/node_modules
|
|
- node_modules
|
|
|
|
test:
|
|
override:
|
|
- build/test.js
|