From bcebc58e1fe4c310b4565d6e0c7be55ac4451687 Mon Sep 17 00:00:00 2001 From: BoykoAlex Date: Fri, 28 Jul 2017 11:49:14 -0400 Subject: [PATCH] Travis build files --- .../atom-manifest-yaml/.travis.yml | 15 +++++++++++ .../atom-manifest-yaml/appveyor.yml | 27 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 atom-extensions/atom-manifest-yaml/.travis.yml create mode 100644 atom-extensions/atom-manifest-yaml/appveyor.yml diff --git a/atom-extensions/atom-manifest-yaml/.travis.yml b/atom-extensions/atom-manifest-yaml/.travis.yml new file mode 100644 index 000000000..f87ce4082 --- /dev/null +++ b/atom-extensions/atom-manifest-yaml/.travis.yml @@ -0,0 +1,15 @@ +language: objective-c + +notifications: + email: + on_success: never + on_failure: change + +script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' + +git: + depth: 10 + +branches: + only: +- master \ No newline at end of file diff --git a/atom-extensions/atom-manifest-yaml/appveyor.yml b/atom-extensions/atom-manifest-yaml/appveyor.yml new file mode 100644 index 000000000..9fa4278db --- /dev/null +++ b/atom-extensions/atom-manifest-yaml/appveyor.yml @@ -0,0 +1,27 @@ +version: "{build}" + +platform: x64 + +branches: + only: + - master + +clone_depth: 10 + +skip_tags: true + +environment: + APM_TEST_PACKAGES: + + matrix: + - ATOM_CHANNEL: stable + - ATOM_CHANNEL: beta + +install: + - ps: Install-Product node 6 + +build_script: + - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1')) + +test: off +deploy: off \ No newline at end of file