summaryrefslogtreecommitdiff
path: root/tests/gnu-system.scm
Commit message (Collapse)AuthorAge
* maint: Move examples from 'tests' to 'examples' directory.Mathieu Lirzin2016-12-16
| | | | | | | | | | | * examples/gnu-system.scm: Moved from 'tests' directory. * examples/guix-jobs.scm: Likewise. * examples/guix-track-git.scm: Likewise. * examples/hello-git.scm: Likewise. * examples/hello-singleton.scm: Likewise. * examples/hello-subset.scm: Likewise. * Makefile.am (EXTRA_DIST): Adapt. * README <Example>: Likewise.
* gnu-system: license->alist: Allow list in license field.Mathieu Lirzin2016-07-25
|
* gnu-system: Add 'license->alist' procedure.Mathieu Lirzin2016-07-14
|
* gnu-system: Use 'specification->package' when possible.Mathieu Lirzin2016-07-14
|
* Evaluate derivations in a separate process.Mathieu Lirzin2016-07-13
| | | | | This fixes a bug where different Guix branches gave the same derivations.
* gnu-system: Fix '%job-name' calls.Mathieu Lirzin2016-07-04
| | | | This calls were using its previous name 'job-name'.
* Change <job-spec> and <job> semantics.Mathieu Lirzin2016-06-16
|
* gnu-system: Add hello subset.Mathieu Lirzin2016-06-13
| | | | * tests/gnu-system.scm (hydra-jobs): Add hello subset.
* job: Add <job-spec> record type.Mathieu Lirzin2016-06-13
| | | | | | | | | | | | | | | | | * src/cuirass/job.scm <job-spec>: New record type. (%make-job-spec, make-job-spec, job-spec-name, job-spec-proc) (job-spec-metadata): New procedures. * tests/gnu-system.scm (package-job): Rename to ... (package-job-spec): ... this. Use 'make-job-spec'. (package-cross-job): Rename to ... (package-cross-job-spec): ... this. Use 'make-job-spec'. (tarball-jobs): Rename to ... (tarball-job-specs): ... this. Use 'make-job-spec'. (package->alist): Rename to ... (package-metadata): ... this. Adapt. (package->job): Rename to ... (package->jobspec): ... this. Adapt. (hydra-jobs): Adapt.
* cuirass: Allow defining jobs outside of the repository.Mathieu Lirzin2016-06-13
* tests/gnu-system.scm: New file. * bin/cuirass.in (evaluate, main): Use it.