Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
jenkins.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Grupp committed Nov 6, 2014
1 parent 3d930e1 commit 5d990c2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ cordova build/run
yo m:service <name>
```

## Continuous Integration
For now we provide a rudimentary `jenkins.sh` template that can be configured to build your projects with jenkins.


## Contribute
Expand Down
1 change: 1 addition & 0 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ var GulpIonicGenerator = yeoman.generators.Base.extend({
this.copy('editorconfig', '.editorconfig');
this.copy('gitattributes', '.gitattributes');
this.copy('gitignore', '.gitignore');
this.copy('jenkins.sh', 'jenkins.sh');
this.copy('jscsrc', '.jscsrc');
this.copy('jshintrc', '.jshintrc');
this.copy('jshintignore', '.jshintignore');
Expand Down
12 changes: 12 additions & 0 deletions app/templates/jenkins.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

# TODO: clone repository

# install dependencies
npm install
bower install

# gulp build
gulp build

# TODO: cordova builds etc...

0 comments on commit 5d990c2

Please sign in to comment.