This repository was archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚥 Add CirclCI, TravisCI, and Appveyor configs
- Loading branch information
Spain
committed
Dec 9, 2015
1 parent
a445775
commit 724b47b
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
git: | ||
depth: 10 | ||
branches: | ||
only: | ||
- master | ||
notifications: | ||
email: | ||
on_success: never | ||
on_failure: change | ||
os: osx | ||
|
||
script: apm install && npm test | ||
# script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' # TODO: add specs (#13) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: "{build}" | ||
os: Windows Server 2012 R2 | ||
branches: | ||
only: | ||
- master | ||
test: off | ||
deploy: off | ||
|
||
install: | ||
- appveyor DownloadFile https://atom.io/download/windows -FileName AtomSetup.exe | ||
- AtomSetup.exe /silent | ||
|
||
build_script: | ||
- cd %APPVEYOR_BUILD_FOLDER% | ||
- SET PATH=%LOCALAPPDATA%\atom\bin;%PATH% | ||
- apm clean | ||
- apm install | ||
# TODO: add specs (#13) | ||
- npm test | ||
#- apm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
dependencies: | ||
pre: | ||
# Force updating wget due to the current containers being too out of date | ||
- sudo apt-get update | ||
- sudo apt-get install wget | ||
override: | ||
- wget -O atom-amd64.deb https://atom.io/download/deb | ||
# - sudo apt-get update # Cut out until wget is fixed on the containers | ||
- sudo dpkg --install atom-amd64.deb || true | ||
- sudo apt-get -f install -y | ||
- atom -v | ||
- apm -v | ||
- apm install | ||
# test: | ||
# post: | ||
#- apm test # TODO: add specs (#13) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters