Changeset 3842


Ignore:
Timestamp:
Jul 18, 2000, 1:18:14 PM (25 years ago)
Author:
bird
Message:

New tree directory each day. (NB. A full build requires at least 150MB!
So, it wouldn't be long until I add deletion of the previous tree.)

Location:
trunk/tools/DailyBuild
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/tools/DailyBuild/job.cmd

    r3451 r3842  
    1 /* $Id: job.cmd,v 1.1 2000-04-27 11:32:24 bird Exp $
     1/* $Id: job.cmd,v 1.2 2000-07-18 11:18:13 bird Exp $
    22 *
    33 * Main job for building OS/2.
     
    1414
    1515    sLogFile = '..\logs\' || Date(S) || '.log';
     16    sTree    = 'tree' || Date(S);
    1617
    1718    /*
    1819     * Clean tree, get it and build it.
    1920     */
    20     'cd ..\tree'
    21     if (rc <> 0) then call failure rc, 'cd ..\tree failed.';
     21    'mkdir ..\'||sTree
     22    'cd ..\'||sTree
     23    if (rc <> 0) then call failure rc, 'cd ..\'sTree 'failed.';
    2224    'call ..\scripts\odin32env.cmd'
    2325    if (rc <> 0) then call failure rc, 'Env failed.';
  • TabularUnified trunk/tools/DailyBuild/odin32get.cmd

    r3451 r3842  
    1 /* $Id: odin32get.cmd,v 1.1 2000-04-27 11:32:25 bird Exp $
     1/* $Id: odin32get.cmd,v 1.2 2000-07-18 11:18:14 bird Exp $
    22 *
    33 * Gets the CVS tree from netlabs.
     
    88 *
    99 */
    10     'cd ..\tree'
    11     if (RC <> 0) then call failure rc, 'Change Dir ..\tree failed';
     10
    1211    'cvs checkout .'
    1312    if (RC <> 0) then call failure rc, 'CVS checkout . failed';
Note: See TracChangeset for help on using the changeset viewer.