diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-10-06 09:50:55 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-10-06 09:51:43 +0200 |
commit | 8a4f1eef98490827b331460d7432de843926869b (patch) | |
tree | 74143f22bb240038c396cb676bc55ec3c7f1a3de /gnu/ci.scm | |
parent | c1cc0c4865a8bfff43c5c9bd6ae8dcadb061c8a0 (diff) |
images: Add pine64-barebones-raw-image.
* gnu/system/images/pine64.scm (pine64-barebones-raw-image): New variable.
* gnu/ci.scm (%guix-system-images): Add it.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r-- | gnu/ci.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index fc35be87b4..bf9952a450 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -56,6 +56,7 @@ #:use-module (gnu system vm) #:use-module (gnu system install) #:use-module (gnu system images hurd) + #:use-module (gnu system images pine64) #:use-module (gnu tests) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) @@ -203,7 +204,8 @@ SYSTEM." '("x86_64-linux" "i686-linux")) (define %guix-system-images - (list hurd-barebones-qcow2-image)) + (list hurd-barebones-qcow2-image + pine64-barebones-raw-image)) (define (image-jobs store system) "Return a list of jobs that build images for SYSTEM." |