Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Add CI configuration #72

Merged
merged 1 commit into from
Oct 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
### Project specific config ###
language: generic

matrix:
include:
- os: linux
env: ATOM_CHANNEL=stable

- os: linux
env: ATOM_CHANNEL=beta

- os: osx
env: ATOM_CHANNEL=stable

### Generic setup follows ###
script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh

notifications:
email:
on_success: never
on_failure: change

branches:
only:
- master

git:
depth: 10

sudo: false

addons:
apt:
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
20 changes: 20 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
### Project specific config ###
environment:
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta

### Generic setup follows ###
build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))

branches:
only:
- master

version: "{build}"
platform: x64
clone_depth: 10
skip_tags: true
test: off
deploy: off
8 changes: 8 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
dependencies:
override:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh

test:
override:
- ./build-package.sh