ci: Don't cross compile to or1k-elf.
* gnu/ci.scm (cross-jobs)[pointless?]: Don't build any packages for or1k-elf. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Change-Id: I294429d5318b94fb8e7780a37f3608b5321cf6camaster
parent
b9a5c50d8c
commit
3aa60e4096
|
@ -191,6 +191,7 @@ SYSTEM."
|
|||
(define (pointless? target)
|
||||
;; Return #t if it makes no sense to cross-build to TARGET from SYSTEM.
|
||||
(or (string=? target "avr") ; Nothing for AVR at this time.
|
||||
(string=? target "or1k-elf") ;; Nothing for or1k-elf at this time.
|
||||
(match system
|
||||
((or "x86_64-linux" "i686-linux")
|
||||
(if (string-contains target "mingw")
|
||||
|
|
Reference in New Issue