mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: ci: Cross-build for fewer platforms.
* gnu/ci.scm (%unsupported-platform-triplets): New variable. (cross-jobs): Also don't build for systems listed in %unsupported-platform-triplets. Change-Id: Ic31ae6d307f2d243c098ec050bdb9d09060466ac
This commit is contained in:
parent
2d11361a97
commit
e99c838d4f
1 changed files with 8 additions and 0 deletions
|
@ -177,6 +177,13 @@ (define %bare-platform-triplets
|
|||
"or1k-elf"
|
||||
"xtensa-ath9k-elf"))
|
||||
|
||||
(define %unsupported-platform-triplets
|
||||
;; These systems are kept around for nostalgia or for tinkering, but regular
|
||||
;; CI is disabled for them to reduce the load on CI infrastructure.
|
||||
'("mips64el-linux-gnu"
|
||||
"powerpc-linux-gnu"
|
||||
"powerpc64-linux-gnu"))
|
||||
|
||||
(define (cross-jobs store system)
|
||||
"Return a list of cross-compilation jobs for SYSTEM."
|
||||
(define (from-32-to-64? target)
|
||||
|
@ -200,6 +207,7 @@ (define (same? target)
|
|||
(define (pointless? target)
|
||||
;; Return #t if it makes no sense to cross-build to TARGET from SYSTEM.
|
||||
(or (member target %bare-platform-triplets)
|
||||
(member target %unsupported-platform-triplets)
|
||||
(match system
|
||||
((or "x86_64-linux" "i686-linux")
|
||||
(if (string-contains target "mingw")
|
||||
|
|
Loading…
Reference in a new issue