Overview
| Comment: | Updated to build in /tmp | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
dc10f57db2ae12787a1879a36d314186 | 
| User & Date: | rkeene on 2015-01-29 16:04:21 | 
| Other Links: | manifest | tags | 
Context
| 
   2015-02-02 
 | ||
| 18:38 | Updated build system to use new build-cc name for static compilers check-in: fe66a5f969 user: rkeene tags: trunk | |
| 
   2015-01-29 
 | ||
| 16:04 | Updated to build in /tmp check-in: dc10f57db2 user: rkeene tags: trunk | |
| 14:35 | KitCreator 0.9.2 check-in: 44247ef8ba user: rkeene tags: trunk, 0.9.2 | |
Changes
Modified build/web/process_queue from [02c92ac8e0] to [1edd04d78d].
1 2 3 4 5 6 7 8 9 10 11  | 1 2 3 4 5 6 7 8 9 10 11 12  | +  | 
#! /usr/bin/env tclsh
set queue "/home/rkeene/devel/kitcreator/build/web/queue"
set outdir "/web/customers/kitcreator.rkeene.org/kits"
set builddir "/tmp/kitcreator-web/builds"
if {![file exists "${queue}.old"]} {
	if {![file exists $queue]} {
		exit 0
	}
	file rename "$queue" "${queue}.old"
 | 
| ︙ | |||
35 36 37 38 39 40 41  | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71  | - - + + + + + + - + + + - - - + + + + + +  | 
	}
	# Skip if build failed
	if {[file exists $outfile.buildfail]} {
		continue
	}
 | 
| ︙ | |||
126 127 128 129 130 131 132  | 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150  | - +  | 
	}
	catch {
		exec {*}$cmd >> "${outfile}.log" 2>@1
	}
	catch {
 | 
| ︙ |