pulsar/circle.yml

46 lines
1.1 KiB
YAML

machine:
environment:
XCODE_SCHEME: test
XCODE_WORKSPACE: test
XCODE_PROJECT: test
xcode:
version: 7.3
post:
- |- # this weird literal syntax allows a : on the next line
curl --header 'Accept: application/vnd.github.v3.raw' --output /tmp/mac.p12 $MAC_CODE_SIGNING_CERT_DOWNLOAD_URL
- security unlock-keychain -p circle circle.keychain
- security import /tmp/mac.p12 -P $MAC_CODE_SIGNING_CERT_PASSWORD -k circle.keychain -T /usr/bin/codesign
- security find-identity -p codesigning
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