make the commands linkable

This commit is contained in:
Graham Christensen 2017-11-24 14:40:53 -05:00
parent c822aeb141
commit 441853e724
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
2 changed files with 12 additions and 10 deletions

View file

@ -16,14 +16,7 @@
Commands:
```
@grahamcofborg build list of attrs
```
This will run `nix-build ./default.nix -A list -A of -A attrs` in
the nixpkgs checkout.
---
### test (added: 2017-11-24)
```
@grahamcofborg test list of tests
@ -32,7 +25,7 @@ the nixpkgs checkout.
This will run `nix-build ./nixos/default.nix -A tests.list -A tests.of -A tests.attrs` in
the nixpkgs checkout. Note: this will only run on x86_64-linux machines.
---
### eval
```
@grahamcofborg eval
@ -43,6 +36,15 @@ commits change. There is no reason to run eval on a PR unless the
evaluation has failed for weird reasons, or because master was broken
before.
### build
```
@grahamcofborg build list of attrs
```
This will run `nix-build ./default.nix -A list -A of -A attrs` in
the nixpkgs checkout.
---

View file

@ -64,7 +64,7 @@ impl worker::SimpleWorker for BuildWorker {
};
let buildfile = match job.subset {
Some(commentparser::Subset::NixOS) => "./nixos/default.nix",
Some(commentparser::Subset::NixOS) => "./nixos/release.nix",
_ => "./default.nix"
};