-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is for the eyeOS CI, which will be made public fairly soon.
- Loading branch information
Vishesh Handa
committed
May 2, 2016
1 parent
f4b1baa
commit 8703c53
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
set -e | ||
set -u | ||
set -x | ||
|
||
# it would be good to not run the build if: | ||
# | ||
# * there are no changes in the source files used in the concatenator.js file | ||
# * there haven't been any changes in this repo | ||
# | ||
# since the last build done by jenkins. To achieve this you might get the date | ||
# of the last jenkins commit in this repo, and do git log --since 'that date' | ||
# and check if there have been any commit or not. | ||
|
||
cd "$(dirname "$0")" | ||
|
||
echo "Generating spiceproxy.js" | ||
|
||
spiceproxy/concatenator.js spice-web-client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "eyeos-spiceproxy", | ||
"version": "0.0.156", | ||
"description": "spice client network stack library", | ||
"main": "src/spiceproxy.js", | ||
"author": "eyeOS", | ||
"homepage": "http://www.eyeos.com", | ||
"dependencies": { | ||
}, | ||
"devDependencies": { | ||
"eyeos-gruntfile": "*", | ||
"grunt": "0.4.5", | ||
"grunt-init": "0.3.2", | ||
"mocha": "2.4.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
sonar.projectKey=spiceproxy | ||
sonar.projectName=spiceproxy | ||
sonar.projectVersion=1.0.0 | ||
sonar.sources=src | ||
sonar.language=js | ||
sonar.dynamicAnalysis=reuseReports | ||
sonar.javascript.jstest.reportsPath=build/reports | ||
sonar.javascript.lcov.reportPath=build/reports/lcov.info | ||
sonar.exclusions=**/node_modules/**/*, \ | ||
**/test/**/*, \ | ||
**/component-test/**/*, \ | ||
**/build/**/*, \ | ||
**/doc/**/* |