summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/cordova-plugin-advanced-http/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-advanced-http/.travis.yml')
-rw-r--r--StoneIsland/plugins/cordova-plugin-advanced-http/.travis.yml61
1 files changed, 61 insertions, 0 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-advanced-http/.travis.yml b/StoneIsland/plugins/cordova-plugin-advanced-http/.travis.yml
new file mode 100644
index 00000000..899ae595
--- /dev/null
+++ b/StoneIsland/plugins/cordova-plugin-advanced-http/.travis.yml
@@ -0,0 +1,61 @@
+notifications:
+ slack:
+ secure: twDT06GAiu0jsKizow7TcghZj70KbuuTrlo02QGmbSxBk2rJfsXSrHAsA3+s/9Q4mudENk6na7fs1aPCxz+u2etUGp+2PaJKVKR5n3jrNNt3SnYeWsBgVo7o7H1aLXatX3a+TdPXh1F5gQ4Ycr93nTYbW/077jsOholwbOHDZE3VcU9dzNPwFaEvhrDbr/ei3tef0ZiM1qxIad74TgwWMKClwai3I7HCVkZOPsyV+ve6cdIJ8Dt47JzFUHSW3SZuoe5Kywxvp0VvMo/QAJw95y3edNafx4EXHwbaN71rpGWSJXIKSZzcSQalZJ9DxGYspIBkWvGsNuQRzG9CzIoNQK10iERlIVC5vKDfKX22gayOQPSDkswJzIduylBUC8zdTPCndXyNEM/Lrj6hg+ksFWN58vYNPgfUeiga7X+LV5HytftsMFW+xx2kbnGeU8doGeX8Q8G7h9OIkHCTTG7R0ldYMIqTm8YJGPkRIv4OReC5ZOhiZD+wSg4KQ0wmMeRi+hyn+I5UPnKEOHAIN8FmLNCZFbgr1wuPFp9xnJIOcumQnQVZ2t6vk6IjIbwhYPWCnf7Sr4BvJxE8eyiLrEaXK0FiPb3My9wK9tLFjj1zdD7e4+SLq+WFMeCxp2eXOGF0Bu+2VK2tGjgWhaudaIpjbRQAAQ5nPa43h16NruEvNWI=
+
+cache:
+ directories:
+ - node_modules
+
+addons:
+ sauce_connect: true
+
+matrix:
+ include:
+ - name: "iOS Build & Test"
+ language: objective-c
+ sudo: false
+ os: osx
+ osx_image: xcode10.1
+
+ before_install:
+ - export LANG=en_US.UTF-8
+
+ install:
+ - npm install
+
+ script:
+ - npm run testjs &&
+ npm run updatecert &&
+ scripts/build-test-app.sh --ios --emulator &&
+ scripts/upload-saucelabs.sh --ios &&
+ scripts/test-app.sh --ios --emulator;
+
+ - name: "Android Build & Test"
+ language: android
+ sudo : required
+
+ android:
+ components:
+ - tools
+ - platform-tools
+ - build-tools-28.0.3
+ - android-28
+ - extra-android-support
+ - extra-android-m2repository
+ - extra-google-m2repository
+
+ before_install:
+ - export LANG=en_US.UTF-8 &&
+ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - &&
+ sudo apt-get install -y nodejs
+ - yes | sdkmanager --update
+
+ install:
+ - npm install
+
+ script:
+ - npm run testjs &&
+ npm run updatecert &&
+ scripts/build-test-app.sh --android --emulator &&
+ scripts/upload-saucelabs.sh --android &&
+ scripts/test-app.sh --android --emulator;