Changeset 1527 for trunk


Ignore:
Timestamp:
May 30, 2010, 12:30:18 AM (15 years ago)
Author:
Gregg Young
Message:

Add logging to release build steps using TEE. Use DIFF to check for changes in WARNALL builds.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ReleaseTool.cmd

    r1503 r1527  
    3939 *    04 Jan 09 JBS Fixed bug in option 9: Apply tag
    4040 *    02 Apr 10 JBS Removed reference to obsolete "internal\makefile" file
     41 *    29 May 10 GKY Use TEE to generate log files for the build options
     42 *       - Use DIFF to compare changes in WARNALL builds
    4143 *
    4244*/
     
    181183         do /* Ensure the edits build */
    182184            'set WARNALL=1'
    183             'wmake -a all |' pager
     185            'wmake -a all | tee warnall.log |' pager
     186            'diff -rub warnall.base warnall.log > warnall.diff'
     187            editor 'warnall.diff'
     188            'set WARNALL='
    184189            prev_action = action
    185190         end
     
    220225            'set FORTIFY='
    221226            'set DEBUG='
    222             'wmake -a all'
     227            'wmake -a all | tee build.log'
    223228            prev_action = action
    224229         end
     
    246251      when action = 12 then
    247252         do /* Lxlite */
    248             'wmake lxlite'
     253            'wmake lxlite | tee lxlite.log'
    249254            prev_action = action
    250255         end
     
    269274         do /* Build distro */
    270275            call SysCls
    271             'wmake dist'
     276            'wmake dist | tee dist.log'
    272277            prev_action = action
    273278         end
Note: See TracChangeset for help on using the changeset viewer.