Skip to content
Snippets Groups Projects
Commit 526b3220 authored by Gabriel Engel's avatar Gabriel Engel
Browse files

Merge pull request #1420 from RocketChat/develop

update server to support mobile clients by default
parents 51e55439 525207cf
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ rocketchat:lib ...@@ -38,6 +38,7 @@ rocketchat:lib
rocketchat:authorization rocketchat:authorization
rocketchat:autolinker rocketchat:autolinker
rocketchat:channel-settings
rocketchat:colors rocketchat:colors
rocketchat:custom-oauth rocketchat:custom-oauth
rocketchat:emojione rocketchat:emojione
...@@ -62,8 +63,15 @@ rocketchat:spotify ...@@ -62,8 +63,15 @@ rocketchat:spotify
rocketchat:statistics rocketchat:statistics
rocketchat:theme rocketchat:theme
rocketchat:tutum rocketchat:tutum
rocketchat:ui
rocketchat:ui-account
rocketchat:ui-admin
rocketchat:ui-flextab
rocketchat:ui-login
rocketchat:ui-master
rocketchat:ui-message
rocketchat:ui-sidenav
rocketchat:webrtc rocketchat:webrtc
rocketchat:channel-settings
rocketchat:wordpress rocketchat:wordpress
#rocketchat:chatops #rocketchat:chatops
#rocketchat:hubot #rocketchat:hubot
...@@ -113,11 +121,3 @@ yasaricli:slugify ...@@ -113,11 +121,3 @@ yasaricli:slugify
yasinuslu:blaze-meta yasinuslu:blaze-meta
# sanjo:jasmine # sanjo:jasmine
# velocity:html-reporter # velocity:html-reporter
rocketchat:ui
rocketchat:ui-sidenav
rocketchat:ui-account
rocketchat:ui-admin
rocketchat:ui-login
rocketchat:ui-flextab
rocketchat:ui-message
rocketchat:ui-master
browser browser
ios
server server
...@@ -25,7 +25,7 @@ cfs:http-methods@0.0.30 ...@@ -25,7 +25,7 @@ cfs:http-methods@0.0.30
check@1.1.0 check@1.1.0
chrismbeckett:toastr@2.1.2_1 chrismbeckett:toastr@2.1.2_1
coffeescript@1.0.11 coffeescript@1.0.11
cosmos:browserify@0.8.3 cosmos:browserify@0.9.0
dandv:caret-position@2.1.1 dandv:caret-position@2.1.1
ddp@1.2.2 ddp@1.2.2
ddp-client@1.2.1 ddp-client@1.2.1
......
...@@ -2,9 +2,10 @@ sudo: required ...@@ -2,9 +2,10 @@ sudo: required
language: node_js language: node_js
branches: branches:
only: only:
- master
- develop - develop
node_js: node_js:
- '0.10' - '0.12'
addons: addons:
apt: apt:
sources: sources:
...@@ -33,7 +34,6 @@ script: ...@@ -33,7 +34,6 @@ script:
- cd .travis - cd .travis
- sh ./namefiles.sh - sh ./namefiles.sh
- cd .. - cd ..
- meteor add-platform ios
- meteor add rocketchat:livechat rocketchat:hubot sanjo:jasmine velocity:console-reporter - meteor add rocketchat:livechat rocketchat:hubot sanjo:jasmine velocity:console-reporter
- ./node_modules/velocity-cli/bin/velocity test-packages --ci - ./node_modules/velocity-cli/bin/velocity test-packages --ci
- ./node_modules/velocity-cli/bin/velocity test-app --ci - ./node_modules/velocity-cli/bin/velocity test-app --ci
...@@ -51,4 +51,6 @@ deploy: ...@@ -51,4 +51,6 @@ deploy:
skip_cleanup: true skip_cleanup: true
local_dir: ../build local_dir: ../build
on: on:
branch: develop branch:
- master
- develop
#!/bin/bash #!/bin/bash
meteor add-platform ios
rm -rf .meteor/local/cordova-build rm -rf .meteor/local/cordova-build
rm -rf ../Rocket.Chat-build rm -rf ../Rocket.Chat-build
meteor build ../Rocket.Chat-build --server https://demo.rocket.chat meteor build ../Rocket.Chat-build --server https://demo.rocket.chat
......
#!/bin/bash #!/bin/bash
source ./build-info.sh source ./build-info.sh
export METEOR_SETTINGS=$(cat settings.json) export METEOR_SETTINGS=$(cat settings.json)
meteor add-platform ios
meteor add rocketchat:livechat rocketchat:hubot meteor add rocketchat:livechat rocketchat:hubot
meteor build --server https://demo.rocket.chat --directory /var/www/rocket.chat meteor build --server https://demo.rocket.chat --directory /var/www/rocket.chat
cd /var/www/rocket.chat/bundle/programs/server cd /var/www/rocket.chat/bundle/programs/server
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment