diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-28 23:33:58 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-28 23:33:58 +0200 |
commit | 0ba10e086f8a6d83e7f110579efac69fd15f8dfa (patch) | |
tree | 6ad2aee151a8b7828aca9c1af67fb6003c48edd4 /build-aux | |
parent | bd6639026bc04c9461545d199253ca64e1cb3467 (diff) | |
download | gnu-guix-0ba10e086f8a6d83e7f110579efac69fd15f8dfa.tar gnu-guix-0ba10e086f8a6d83e7f110579efac69fd15f8dfa.tar.gz |
hydra: Build for mips64el-linux.
* build-aux/hydra/gnu-system.scm (hydra-jobs)[systems]: Add
mips64el-linux.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 28fad6a8e2..ba6df9d97d 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -147,7 +147,8 @@ system.") "Return Hydra jobs." (define systems ;; Systems we want to build for. - '("x86_64-linux" "i686-linux")) + '("x86_64-linux" "i686-linux" + "mips64el-linux")) (define subset (match (assoc-ref arguments 'subset) |