Skip to content

Commit ebac586

Browse files
Gunasekar Kesavalu (GIS)mtwomey
authored andcommitted
Created dev-circleci branch. Removed travis.yml. Added circle.yml and deploy.sh
1 parent e77252c commit ebac586

File tree

3 files changed

+34
-73
lines changed

3 files changed

+34
-73
lines changed

.travis.yml

Lines changed: 0 additions & 73 deletions
This file was deleted.

circle.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
machine:
2+
node:
3+
version: 5.5.0
4+
environment:
5+
CXX: g++-4.8
6+
7+
dependencies:
8+
pre:
9+
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
10+
- sudo apt-get update -y
11+
- sudo apt-get install g++-4.8 -y
12+
13+
compile:
14+
override:
15+
- npm cache clean
16+
- npm run lint && npm test && npm run build
17+
18+
deployment:
19+
development:
20+
branch: [ "dev", "feature/deep-links"]
21+
owner: appirio-tech
22+
commands:
23+
- ./deploy.sh DEV
24+
qa:
25+
branch: qa
26+
owner: appirio-tech
27+
commands:
28+
- ./deploy.sh QA
29+
production:
30+
branch: master
31+
owner: appirio-tech
32+
commands:
33+
- ./deploy.sh PROD

deploy.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
echo $1

0 commit comments

Comments
 (0)