Update CI snapshots for cs-as-default.
This commit is contained in:
parent
2885df0347
commit
0cd1899d9d
40
.github/workflows/site-small.rkt
vendored
40
.github/workflows/site-small.rkt
vendored
|
@ -43,25 +43,31 @@
|
||||||
#:tgz? #t)))
|
#:tgz? #t)))
|
||||||
|
|
||||||
(define (cs-machine #:name name #:pkgs [pkgs distro-content])
|
(define (cs-machine #:name name #:pkgs [pkgs distro-content])
|
||||||
(machine #:dir "cs-build"
|
(machine
|
||||||
#:repo source-dir
|
#:dist-suffix (if (null? pkgs) "min" "")
|
||||||
#:pull? #f
|
#:j 2
|
||||||
#:j 2
|
#:log-file (convert-log-name name)
|
||||||
#:timeout (* 60 60 (if (null? pkgs) 1/2 2)) ;; 2 hours for the full build
|
#:name name
|
||||||
#:variant 'cs
|
#:pkgs pkgs
|
||||||
#:dist-suffix (if (null? pkgs) "min-cs" "cs")
|
#:timeout (* 60 60 (if (null? pkgs) 1/2 2)) ;; 2 hours for the full build
|
||||||
#:versionless? #t
|
#:variant 'cs
|
||||||
#:pkgs pkgs
|
#:versionless? #t))
|
||||||
#:log-file (convert-log-name name)
|
|
||||||
#:name name))
|
|
||||||
|
|
||||||
(define (bc-machine #:name name #:pkgs [pkgs distro-content])
|
(define (bc-machine #:name name #:pkgs [pkgs distro-content])
|
||||||
(machine #:versionless? #t
|
(machine
|
||||||
#:pkgs pkgs
|
;; these three lines are because it's the non-default build
|
||||||
#:j 2
|
#:dir "bc-build"
|
||||||
#:dist-suffix (if (null? pkgs) "min" "")
|
#:repo source-dir
|
||||||
#:log-file (convert-log-name name)
|
#:pull? #f
|
||||||
#:name name))
|
;; this is just usual configuration (mirrored for cs-machine)
|
||||||
|
#:dist-suffix (if (null? pkgs) "min-bc" "bc")
|
||||||
|
#:j 2
|
||||||
|
#:log-file (convert-log-name name)
|
||||||
|
#:name name
|
||||||
|
#:pkgs pkgs
|
||||||
|
#:timeout (* 60 60 (if (null? pkgs) 1/2 2)) ;; 2 hours for the full build
|
||||||
|
#:variant 'bc
|
||||||
|
#:versionless? #t))
|
||||||
|
|
||||||
;; The overall configuration:
|
;; The overall configuration:
|
||||||
(sequential
|
(sequential
|
||||||
|
|
Loading…
Reference in New Issue
Block a user