]> source.dussan.org Git - jquery.git/commitdiff
Update the build script so it runs on Windows.
authorDave Methvin <dave.methvin@gmail.com>
Sun, 16 Dec 2012 22:13:17 +0000 (17:13 -0500)
committerDave Methvin <dave.methvin@gmail.com>
Sun, 16 Dec 2012 22:19:51 +0000 (17:19 -0500)
build/release.js

index 8c277d4df112db9ece00c0864d102ad9feee4fb9..4615eb954d74d220b60082dc535a15dd489959c2 100644 (file)
@@ -9,19 +9,19 @@ var   debug = false,
 
 var fs = require("fs"),
        child = require("child_process"),
-       path = require("path"),
-       which = require('which').sync;
+       path = require("path");
 
 var releaseVersion,
        nextVersion,
        finalFiles,
        isBeta,
        pkg,
+       branch,
 
        scpURL = "jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/",
        cdnURL = "http://code.origin.jquery.com/",
-       repoURL = "git://github.com/jquery/jquery.git",
-       branch = "master",
+       repoURL = "git://github.com/dmethvin/jquery.git",
+       //repoURL = "git://github.com/jquery/jquery.git",
 
        // Windows needs the .cmd version but will find the non-.cmd
        // On Windows, ensure the HOME environment variable is set
@@ -62,18 +62,18 @@ function initialize( next ) {
        // First arg should be the version number being released
        var newver, oldver,
                rversion = /^(\d)\.(\d+)\.(\d)((?:a|b|rc)\d|pre)?$/,
-               version = ( process.argv[2] || "" ).toLowerCase().match( rversion ) || {},
+               version = ( process.argv[3] || "" ).toLowerCase().match( rversion ) || {},
                major = version[1],
                minor = version[2],
                patch = version[3],
                xbeta = version[4];
 
-
-       releaseVersion = process.argv[2];
+       branch = process.argv[2];
+       releaseVersion = process.argv[3];
        isBeta = !!xbeta;
 
-       if ( !major || !minor || !patch ) {
-               die( "Usage: " + process.argv[1] + " releaseVersion" );
+       if ( !branch || !major || !minor || !patch ) {
+               die( "Usage: " + process.argv[1] + " branch releaseVersion" );
        }
        if ( xbeta === "pre" ) {
                die( "Cannot release a 'pre' version!" );
@@ -95,7 +95,11 @@ function initialize( next ) {
        next();
 }
 function checkGitStatus( next ) {
-       exec( "git status", function( error, stdout, stderr ) {
+       git( [ "status" ], function( error, stdout, stderr ) {
+               var onBranch = ((stdout||"").match( /On branch (\S+)/ ) || [])[1];
+               if ( onBranch !== branch ) {
+                       die( "Branches don't match: Wanted " + branch + ", got " + onBranch );
+               }
                if ( /Changes to be committed/i.test( stdout ) ) {
                        die( "Please commit changed files before attemping to push a release." );
                }
@@ -107,12 +111,18 @@ function checkGitStatus( next ) {
 }
 function tagReleaseVersion( next ) {
        updatePackageVersion( releaseVersion );
-       exec( 'git commit -a -m "Tagging the ' + releaseVersion + ' release."', function(){
-               exec( "git tag " + releaseVersion, next);
-       });
+       git( [ "commit", "-a", "-m", "Tagging the " + releaseVersion + " release." ], function(){
+               git( [ "tag", releaseVersion ], next, debug);
+       }, debug);
 }
 function gruntBuild( next ) {
-       exec( gruntCmd, next );
+       exec( gruntCmd, [], function( error, stdout ) {
+               if ( error ) {
+                       die( error + stderr );
+               }
+               console.log( stdout );
+               next();
+       }, debug);
 }
 function makeReleaseCopies( next ) {
        finalFiles = {};
@@ -130,17 +140,17 @@ function makeReleaseCopies( next ) {
 }
 function setNextVersion( next ) {
        updatePackageVersion( nextVersion );
-       exec( 'git commit -a -m "Updating the source version to ' + nextVersion + '"', next );
+       git( [ "commit", "-a", "-m", "Updating the source version to " + nextVersion ], next, debug );
 }
 function uploadToCDN( next ) {
        var cmds = [];
 
        Object.keys( finalFiles ).forEach(function( name ) {
-               cmds.push(function( x ){
-                       exec( "scp " + name + " " + scpURL, x, skipRemote );
+               cmds.push(function( nxt ){
+                       exec( "scp", [ name, scpURL ], nxt, debug || skipRemote );
                });
-               cmds.push(function( x ){
-                       exec( "curl '" + cdnURL + name + "?reload'", x, skipRemote );
+               cmds.push(function( nxt ){
+                       exec( "curl", [ cdnURL + name + "?reload" ], nxt, debug || skipRemote );
                });
        });
        cmds.push( next );
@@ -148,7 +158,7 @@ function uploadToCDN( next ) {
        steps.apply( this, cmds );
 }
 function pushToGithub( next ) {
-       exec("git push --tags "+ repoURL + " " + branch, next, skipRemote );
+       git( [ "push", "--tags", repoURL, branch ], next, debug || skipRemote );
 }
 
 //==============================
@@ -174,18 +184,23 @@ function copy( oldFile, newFile ) {
                fs.writeFileSync( newFile, fs.readFileSync( oldFile, "utf8" ) );
        }
 }
-function exec( cmd, fn, skip ) {
-       if ( debug || skip ) {
-               console.log( "# " + cmd );
-               fn();
+function git( args, fn, skip ) {
+       exec( "git", args, fn, skip );
+}
+function exec( cmd, args, fn, skip ) {
+       if ( skip ) {
+               console.log( "# " + cmd + " " + args.join(" ") );
+               fn( "", "", "" );
        } else {
-               console.log( cmd );
-               child.exec( cmd, { env: process.env }, function( err, stdout, stderr ) {
-                       if ( err ) {
-                               die( stderr || stdout || err );
+               console.log( cmd + " " + args.join(" ") );
+               child.execFile( cmd, args, { env: process.env }, 
+                       function( err, stdout, stderr ) {
+                               if ( err ) {
+                                       die( stderr || stdout || err );
+                               }
+                               fn.apply( this, arguments );
                        }
-                       fn();
-               });
+               );
        }
 }
 function die( msg ) {