Commit 62a2f80f by fg2it

add option for grunt release

parent 174ea11b
...@@ -9,7 +9,6 @@ module.exports = function (grunt) { ...@@ -9,7 +9,6 @@ module.exports = function (grunt) {
genDir: 'public_gen', genDir: 'public_gen',
destDir: 'dist', destDir: 'dist',
tempDir: 'tmp', tempDir: 'tmp',
arch: os.arch(),
platform: process.platform.replace('win32', 'windows'), platform: process.platform.replace('win32', 'windows'),
}; };
...@@ -17,6 +16,10 @@ module.exports = function (grunt) { ...@@ -17,6 +16,10 @@ module.exports = function (grunt) {
config.arch = process.env.hasOwnProperty('ProgramFiles(x86)') ? 'x64' : 'x86'; config.arch = process.env.hasOwnProperty('ProgramFiles(x86)') ? 'x64' : 'x86';
} }
config.arch = grunt.option('arch') || os.arch();
config.phjs = grunt.option('phjsToRelease');
config.pkg.version = grunt.option('pkgVer') || config.pkg.version; config.pkg.version = grunt.option('pkgVer') || config.pkg.version;
console.log('Version', config.pkg.version); console.log('Version', config.pkg.version);
......
...@@ -96,7 +96,7 @@ easily the grafana repository you want to build. ...@@ -96,7 +96,7 @@ easily the grafana repository you want to build.
```bash ```bash
go get github.com/*your_account*/grafana go get github.com/*your_account*/grafana
mkdir $GOPATH/src/github.com/grafana mkdir $GOPATH/src/github.com/grafana
ln -s github.com/*your_account*/grafana $GOPATH/src/github.com/grafana/grafana ln -s $GOPATH/src/github.com/*your_account*/grafana $GOPATH/src/github.com/grafana/grafana
``` ```
### Building the backend ### Building the backend
......
module.exports = function(config,grunt) { module.exports = function(config,grunt) {
'use strict'; 'use strict';
grunt.registerTask('phantomjs', 'Copy phantomjs binary from node', function() { grunt.registerTask('phantomjs', 'Copy phantomjs binary from node', function() {
var dest = './vendor/phantomjs/phantomjs'; var dest = './vendor/phantomjs/phantomjs';
var confDir = './node_modules/phantomjs-prebuilt/lib/'; var confDir = './node_modules/phantomjs-prebuilt/lib/';
if (!grunt.file.exists(dest)){ if (!grunt.file.exists(dest)){
var m=grunt.file.read(confDir+"location.js") src = config.phjs
var src=/= \"([^\"]*)\"/.exec(m)[1];
if (!src){
if (!grunt.file.isPathAbsolute(src)) { var m=grunt.file.read(confDir+"location.js")
src = confDir+src; var src=/= \"([^\"]*)\"/.exec(m)[1];
}
if (!grunt.file.isPathAbsolute(src)) {
try { src = confDir+src;
grunt.config('copy.phantom_bin', { }
src: src, }
dest: dest,
options: { mode: true}, try {
}); grunt.config('copy.phantom_bin', {
grunt.task.run('copy:phantom_bin'); src: src,
} catch (err) { dest: dest,
grunt.verbose.writeln(err); options: { mode: true},
grunt.fail.warn('No working Phantomjs binary available') });
} grunt.task.run('copy:phantom_bin');
} catch (err) {
} else { grunt.verbose.writeln(err);
grunt.log.writeln('Phantomjs already imported from node'); grunt.fail.warn('No working Phantomjs binary available')
} }
});
}; } else {
grunt.log.writeln('Phantomjs already imported from node');
}
});
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment