diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-07-02 01:51:56 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-07-02 01:51:56 +0200 |
commit | 94f910355ca989832814e9b27fa6d2b194e22ec7 (patch) | |
tree | 201842303299239f1d149963f9fb870c27195199 /tests | |
parent | b185505db018ce99cf2d526418dbf6a8848cde83 (diff) | |
download | cuirass-94f910355ca989832814e9b27fa6d2b194e22ec7.tar cuirass-94f910355ca989832814e9b27fa6d2b194e22ec7.tar.gz |
job: Add load-path field to <job-spec>.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hello-subset.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/hello-subset.scm b/tests/hello-subset.scm index b270ded..f904782 100644 --- a/tests/hello-subset.scm +++ b/tests/hello-subset.scm @@ -27,6 +27,7 @@ (list (make-job-spec #:name "guix" #:url "git://git.savannah.gnu.org/guix.git" + #:load-path "." #:branch "master" #:file (local-file "gnu-system.scm") #:proc 'hydra-jobs @@ -34,6 +35,7 @@ (make-job-spec #:name "guix" #:url "git://git.savannah.gnu.org/guix.git" + #:load-path "." #:branch "core-updates" #:file (local-file "gnu-system.scm") #:proc 'hydra-jobs @@ -41,6 +43,7 @@ (make-job-spec #:name "guix" #:url "git://git.savannah.gnu.org/guix.git" + #:load-path "." #:tag "v0.9.0" #:file (local-file "gnu-system.scm") #:proc 'hydra-jobs |