Getting it working after the crash

This commit is contained in:
Jay McCarthy 2011-08-08 10:07:51 -06:00
parent 22ac1f8c54
commit a11734d990
7 changed files with 739 additions and 618 deletions

View File

@ -0,0 +1,47 @@
0. Copy source to /opt/plt/drdr
1. Create
/opt/plt
/opt/plt/plt (Racket install)
/opt/plt/builds
/opt/plt/future-builds
/opt/plt/logs
/opt/plt/builds/<N> (for the first build)
2. Install stuff
sudo apt-get install xorg fluxbox python-software-properties gcc libcairo2 libpango1.0-0 libgtk2.0-0 texlive lib32gmp3 libreadline5 libpcre3-dev libgmp3-dev
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git-core
3. Setup git
cd /opt/plt
git clone http://git.racket-lang.org/plt.git repo
4. Setup firewall
sudo ufw allow 22
sudo ufw enable
sudo vim /etc/ufw/before.rules
*nat
:PREROUTING ACCEPT [0:0]
-A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 9000
COMMIT
sudo ufw allow 80
sudo ufw allow 9000
sudo service ufw restart
5.
setuid on /usr/bin/Xorg
6.
sudo apt-get install postfix
# Use the Internet site setup

View File

@ -61,11 +61,14 @@
(for ([pp (in-list (lc->list lc))])
(define p (bytes->string/utf-8 pp))
(define bp (base-path p))
(for ([responsible (in-list (rendering-responsibles (log-rendering p)))])
(hash-update! (hash-ref! responsible->problems responsible make-hasheq)
id
(curry list* bp)
empty))))
(for ([responsible
(in-list
(rendering-responsibles (log-rendering p)))])
(hash-update!
(hash-ref! responsible->problems responsible make-hasheq)
id
(curry list* bp)
empty))))
responsible->problems))
@ -118,10 +121,19 @@
(map lc->number
(list timeout unclean stderr changes)))
(define totals
(apply format "(timeout ~a) (unclean ~a) (stderr ~a) (changes ~a)" (map number->string nums)))
(apply
format
"(timeout ~a) (unclean ~a) (stderr ~a) (changes ~a)"
(map number->string nums)))
(define (path->url pth)
(format "http://drdr.racket-lang.org/~a~a" cur-rev pth))
(define responsible-ht (statuses->responsible-ht cur-rev timeout unclean stderr changes))
(define responsible-ht
(statuses->responsible-ht
cur-rev
timeout
unclean
stderr
changes))
(define responsibles
(for/list ([(responsible ht) (in-hash responsible-ht)]
#:when (ormap (curry hash-has-key? ht)
@ -142,14 +154,15 @@
; There is a condition
(not (empty? responsibles))
; It is different from before
diff
(hash? diff)
(for*/or ([(r ht) (in-hash diff)]
[(id ps) (in-hash ht)])
(and (for/or ([p (in-list ps)])
; XXX This squelch should be disabled if the committer changed this file
; XXX But even then it can lead to problems
(not (path-random? (build-path (revision-trunk-dir cur-rev) (substring (path->string* p) 1)))))
(not (symbol=? id 'changes))))))
(and
(for/or ([p (in-list ps)])
; XXX This squelch should be disabled if the committer changed this file
; XXX But even then it can lead to problems
(not (path-random? (build-path (revision-trunk-dir cur-rev) (substring (path->string* p) 1)))))
(not (symbol=? id 'changes))))))
(define mail-recipients
(append (if include-committer?
(list committer)

View File

@ -1,3 +1,3 @@
#!/bin/sh
rsync -avz . drdr:/opt/svn/drdr/ --exclude=compiled --delete --exclude=data
rsync -avz . ${1}drdr:/opt/svn/drdr/ --exclude=compiled --delete --exclude=data

View File

@ -49,7 +49,8 @@
(path->string
(build-path (plt-directory) "plt" "bin" "racket"))
"-t"
(path->string (build-path (drdr-directory) "make-archive.rkt"))
(path->string
(build-path (drdr-directory) "make-archive.rkt"))
"--"
"--many" (number->string 100))))))
@ -60,8 +61,9 @@
cur-rev
(lambda (newer)
(for ([rev (in-list newer)])
(write-cache! (future-record-path rev)
(get-scm-commit-msg rev (plt-repository)))))
(write-cache!
(future-record-path rev)
(get-scm-commit-msg rev (plt-repository)))))
(lambda (prev-rev cur-rev)
(handle-revision prev-rev cur-rev)

View File

@ -60,7 +60,8 @@
(build-path log-dir "src" "build" "make")
(make-path)
(list "-j" (number->string (number-of-cpus))))
(with-env (["PLT_SETUP_OPTIONS" (format "-j ~a" (number-of-cpus))])
(with-env
(["PLT_SETUP_OPTIONS" (format "-j ~a" (number-of-cpus))])
(run/collect/wait/log
#:timeout (current-make-install-timeout-seconds)
#:env (current-env)
@ -82,11 +83,17 @@
(call-with-temporary-directory (lambda () e)))
(define (call-with-temporary-home-directory thunk)
(define new-dir (make-temporary-file "home~a" 'directory (current-temporary-directory)))
(define new-dir
(make-temporary-file
"home~a"
'directory
(current-temporary-directory)))
(dynamic-wind
(lambda ()
(with-handlers ([exn:fail? void])
(copy-directory/files (hash-ref (current-env) "HOME") new-dir)))
(copy-directory/files
(hash-ref (current-env) "HOME")
new-dir)))
(lambda ()
(with-env (["HOME" (path->string new-dir)])
(thunk)))
@ -169,86 +176,101 @@
(define test-workers (make-job-queue (number-of-cpus)))
(define (test-directory dir-pth upper-sema)
(define dir-log (build-path (trunk->log dir-pth) ".index.test"))
(if (read-cache* dir-log)
(semaphore-post upper-sema)
(let ()
(notify! "Testing in ~S" dir-pth)
(define files/unsorted (directory-list* dir-pth))
(define dir-sema (make-semaphore 0))
(define files
(sort files/unsorted <
#:key (λ (p)
(if (bytes=? #"tests" (path->bytes p))
0
1))
#:cache-keys? #t))
(for ([sub-pth (in-list files)])
(define pth (build-path dir-pth sub-pth))
(define directory? (directory-exists? pth))
(if directory?
(test-directory pth dir-sema)
(let ()
(define log-pth (trunk->log pth))
(if (file-exists? log-pth)
(semaphore-post dir-sema)
(let ()
(define pth-timeout
(or (path-timeout pth)
(current-subprocess-timeout-seconds)))
(define pth-cmd/general (path-command-line pth))
(define pth-cmd
(match pth-cmd/general
[#f
#f]
[(list-rest (or 'mzscheme 'racket) rst)
(lambda (k) (k (list* racket-path rst)))]
[(list-rest 'mzc rst)
(lambda (k) (k (list* mzc-path rst)))]
[(list-rest 'raco rst)
(lambda (k) (k (list* raco-path rst)))]
[(list-rest (or 'mred 'mred-text
'gracket 'gracket-text)
rst)
(if (on-unix?)
(lambda (k)
(call-with-semaphore
gui-lock
(λ ()
(k
(list* gracket-path
"-display"
(format ":~a" (cpu->child (current-worker)))
rst)))))
#f)]
[_
#f]))
(if pth-cmd
(submit-job!
test-workers
(lambda ()
(dynamic-wind
void
(λ ()
(pth-cmd
(λ (l)
(with-env (["DISPLAY" (format ":~a" (cpu->child (current-worker)))])
(with-temporary-home-directory
(with-temporary-directory
(run/collect/wait/log log-pth
#:timeout pth-timeout
#:env (current-env)
(first l)
(rest l))))))))
(λ ()
(semaphore-post dir-sema)))))
(semaphore-post dir-sema)))))))
(thread
(lambda ()
(define how-many (length files))
(semaphore-wait* dir-sema how-many)
(notify! "Done with dir: ~a" dir-pth)
(write-cache! dir-log (current-seconds))
(semaphore-post upper-sema))))))
(cond
[(read-cache* dir-log)
(semaphore-post upper-sema)]
[else
(notify! "Testing in ~S" dir-pth)
(define files/unsorted (directory-list* dir-pth))
(define dir-sema (make-semaphore 0))
(define files
(sort files/unsorted <
#:key (λ (p)
(if (bytes=? #"tests" (path->bytes p))
0
1))
#:cache-keys? #t))
(for ([sub-pth (in-list files)])
(define pth (build-path dir-pth sub-pth))
(define directory? (directory-exists? pth))
(cond
[directory?
(test-directory pth dir-sema)]
[else
(define log-pth (trunk->log pth))
(cond
[(file-exists? log-pth)
(semaphore-post dir-sema)]
[else
(define pth-timeout
(or (path-timeout pth)
(current-subprocess-timeout-seconds)))
(define pth-cmd/general
(path-command-line pth))
(define pth-cmd
(match pth-cmd/general
[#f
#f]
[(list-rest (or 'mzscheme 'racket) rst)
(lambda (k)
(k (list* racket-path rst)))]
[(list-rest 'mzc rst)
(lambda (k) (k (list* mzc-path rst)))]
[(list-rest 'raco rst)
(lambda (k) (k (list* raco-path rst)))]
[(list-rest (or 'mred 'mred-text
'gracket 'gracket-text)
rst)
(if (on-unix?)
(lambda (k)
(call-with-semaphore
gui-lock
(λ ()
(k
(list* gracket-path
"-display"
(format
":~a"
(cpu->child
(current-worker)))
rst)))))
#f)]
[_
#f]))
(cond
[pth-cmd
(submit-job!
test-workers
(lambda ()
(dynamic-wind
void
(λ ()
(pth-cmd
(λ (l)
(with-env
(["DISPLAY"
(format ":~a"
(cpu->child
(current-worker)))])
(with-temporary-home-directory
(with-temporary-directory
(run/collect/wait/log
log-pth
#:timeout pth-timeout
#:env (current-env)
(first l)
(rest l))))))))
(λ ()
(semaphore-post dir-sema)))))]
[else
(semaphore-post dir-sema)])])]))
(thread
(lambda ()
(define how-many (length files))
(semaphore-wait* dir-sema how-many)
(notify! "Done with dir: ~a" dir-pth)
(write-cache! dir-log (current-seconds))
(semaphore-post upper-sema)))]))
; Some setup
(for ([pp (in-list (planet-packages))])
(match pp
@ -267,7 +289,9 @@
#:env (current-env)
(build-path log-dir "src" "build" "set-browser.rkt")
racket-path
(list "-t" (path->string* (build-path (drdr-directory) "set-browser.rkt"))))
(list "-t"
(path->string*
(build-path (drdr-directory) "set-browser.rkt"))))
; And go
(define top-sema (make-semaphore 0))
(notify! "Starting testing")
@ -292,9 +316,12 @@
(define (remove-X-locks tmp-dir i)
(for ([dir (in-list (list "/tmp" tmp-dir))])
(safely-delete-directory (build-path dir (format ".X~a-lock" i)))
(safely-delete-directory (build-path dir ".X11-unix" (format ".X~a-lock" i)))
(safely-delete-directory (build-path dir (format ".tX~a-lock" i)))))
(safely-delete-directory
(build-path dir (format ".X~a-lock" i)))
(safely-delete-directory
(build-path dir ".X11-unix" (format ".X~a-lock" i)))
(safely-delete-directory
(build-path dir (format ".tX~a-lock" i)))))
(define (integrate-revision rev)
(define test-dir
@ -323,7 +350,8 @@
["TMPDIR" (path->string tmp-dir)]
["PATH"
(format "~a:~a"
(path->string (build-path trunk-dir "bin"))
(path->string
(build-path trunk-dir "bin"))
(getenv "PATH"))]
["PLTPLANETDIR" (path->string planet-dir)]
["HOME" (path->string home-dir)])
@ -339,14 +367,20 @@
(with-running-program
"/usr/bin/Xorg" (list (format ":~a" i))
(lambda ()
(sleep 1)
(sleep 2)
(notify! "Starting fluxbox #~a" i)
(with-running-program
(fluxbox-path) (list "-display" (format ":~a" i) "-rc" "/home/jay/.fluxbox/init")
(fluxbox-path)
(list "-display"
(format ":~a" i)
"-rc" "/home/pltdrdr/.fluxbox/init")
inner))))
(start-x-server
ROOTX
(lambda ()
(sleep 2)
(notify! "Starting test of rev ~a" rev)
(test-revision rev)))))
; Remove the test directory
(safely-delete-directory test-dir))))

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
# go away
User-agent: *
Disallow: /