Skip to content

Commit

Permalink
fixup! fixup! "Not you: team." (Rework README)
Browse files Browse the repository at this point in the history
  • Loading branch information
cole-h committed May 6, 2020
1 parent 6cc7e03 commit 8b7ff41
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,9 @@ $ cd ofborg
$ cargo build
```

Next, copy `example.config.json` to `config.json` and edit its contents as you
see fit. Set `nix.remote` to an empty string if you are not using the daemon.
Next, copy [`example.config.json`](./example.config.json) to `config.json` and
edit its contents as you see fit. Set `nix.remote` to an empty string if you are
not using the daemon.

You can then run the builder like so:

Expand Down
2 changes: 1 addition & 1 deletion ofborg/src/evalchecker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl EvalChecker {
}

pub fn name(&self) -> String {
format!("grahamcofborg-eval-{}", self.name)
format!("ofborg-eval-{}", self.name)
}

pub fn execute(&self, path: &Path) -> Result<File, File> {
Expand Down
4 changes: 2 additions & 2 deletions ofborg/src/tasks/eval/nixpkgs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ impl<'a> NixpkgsStrategy<'a> {
let status = CommitStatus::new(
self.repo.statuses(),
self.job.pr.head_sha.clone(),
String::from("grahamcofborg-eval-check-maintainers"),
String::from("ofborg-eval-check-maintainers"),
String::from("matching changed paths to changed attrs..."),
gist_url,
);
Expand All @@ -299,7 +299,7 @@ impl<'a> NixpkgsStrategy<'a> {
let mut status = CommitStatus::new(
self.repo.statuses(),
self.job.pr.head_sha.clone(),
String::from("grahamcofborg-eval-check-meta"),
String::from("ofborg-eval-check-meta"),
String::from("config.nix: checkMeta = true"),
None,
);
Expand Down
4 changes: 2 additions & 2 deletions ofborg/src/tasks/evaluate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl<'a, E: stats::SysEvents + 'static> OneEval<'a, E> {
};

let mut builder = hubcaps::statuses::StatusOptions::builder(state);
builder.context("grahamcofborg-eval");
builder.context("ofborg-eval");
builder.description(description.clone());

if let Some(url) = url {
Expand Down Expand Up @@ -302,7 +302,7 @@ impl<'a, E: stats::SysEvents + 'static> OneEval<'a, E> {
let mut overall_status = CommitStatus::new(
repo.statuses(),
job.pr.head_sha.clone(),
"grahamcofborg-eval".to_owned(),
"ofborg-eval".to_owned(),
"Starting".to_owned(),
None,
);
Expand Down

0 comments on commit 8b7ff41

Please sign in to comment.