diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2024-01-23 21:45:11 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2024-01-23 21:45:36 +0100 |
commit | 3aa60e4096e5a9e880c9545cd28ec4aab610753f (patch) | |
tree | e8816e530d52c79b869db194efa487038c43b2a5 | |
parent | b9a5c50d8c92a7ec6f15b2ec9005d1bbd72d1024 (diff) |
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
-rw-r--r-- | gnu/ci.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 6ee8499728..e25a772772 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -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") |