In previous commit, I created a one-liner for running build-package, it did not seem to work.
36 lines
587 B
YAML
36 lines
587 B
YAML
### Project specific config ###
|
|
language: objective-c
|
|
|
|
env:
|
|
global:
|
|
- APM_TEST_PACKAGES="vim-mode-plus"
|
|
- ATOM_LINT_WITH_BUNDLED_NODE="true"
|
|
|
|
matrix:
|
|
- ATOM_CHANNEL=stable
|
|
- ATOM_CHANNEL=beta
|
|
|
|
os:
|
|
- linux
|
|
|
|
### Generic setup follows ###
|
|
script:
|
|
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
|
|
- chmod +x build-package.sh
|
|
- ./build-package.sh
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|
|
|
|
git:
|
|
depth: 10
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- build-essential
|
|
- fakeroot
|
|
- git
|
|
- libsecret-1-dev
|