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: I294429d5318b94fb8e7780a37f3608b5321cf6ca
This commit is contained in:
Mathieu Othacehe 2024-01-23 21:45:11 +01:00
parent b9a5c50d8c
commit 3aa60e4096
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -191,6 +191,7 @@ (define (same? target)
(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")