Unverified Commit 3ea6ff7b authored by Chris Austen's avatar Chris Austen Committed by GitHub
Browse files

Ensure CI labels map correctly (#1780)

parent 26c1efa5
......@@ -84,8 +84,10 @@ def rocmnodename(name) {
node_name = "${rocmtest_name} && vega";
} else if(name == "navi21") {
node_name = "${rocmtest_name} && navi21";
} else if(name == "anygpu") {
node_name = "${rocmtest_name} && (gfx908 || gfx90a || vega)";
} else if(name == "nogpu") {
return rocmtest_name;
node_name = "${rocmtest_name} && nogpu";
}
return node_name
}
......@@ -144,7 +146,7 @@ def onnxnode(name, body) {
}
}
rocmtest onnx: onnxnode('rocmtest') { cmake_build ->
rocmtest onnx: onnxnode('anygpu') { cmake_build ->
stage("Onnx runtime") {
sh '''
apt install half
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment