From 4ced09d1692bfcdd7bd48014ebcb84db08d36f9b Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 31 Jan 2018 11:14:17 -0500 Subject: [PATCH] No longer append x86_64-linux to test jobs --- ofborg/src/commentparser.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ofborg/src/commentparser.rs b/ofborg/src/commentparser.rs index 3c01294..d205cee 100644 --- a/ofborg/src/commentparser.rs +++ b/ofborg/src/commentparser.rs @@ -49,7 +49,7 @@ pub fn parse_line(text: &str) -> Option> { Subset::NixOS, right .into_iter() - .map(|attr| format!("tests.{}.x86_64-linux", attr)) + .map(|attr| format!("tests.{}", attr)) .collect(), )); @@ -216,9 +216,9 @@ baz", Instruction::Build( Subset::NixOS, vec![ - String::from("tests.foo.x86_64-linux"), - String::from("tests.bar.x86_64-linux"), - String::from("tests.baz.x86_64-linux"), + String::from("tests.foo"), + String::from("tests.bar"), + String::from("tests.baz"), ] ), ]),