From 6a568a8652d138c8716c2844902fd192fdafb6d5 Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Fri, 19 Feb 2021 21:37:51 +0000 Subject: [PATCH] Make CI only run subset of unit tests. --- .jenkins/common.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.jenkins/common.groovy b/.jenkins/common.groovy index 8e31847c2e..037c63a0c0 100644 --- a/.jenkins/common.groovy +++ b/.jenkins/common.groovy @@ -21,7 +21,8 @@ def runTestCommand (platform, project) def command = """#!/usr/bin/env bash set -x cd ${project.paths.project_build_prefix}/build/release/test - ${sudo} NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./UnitTests --gtest_output=xml --gtest_color=yes + ${sudo} NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./UnitTests --gtest_filter="BroadcastCorrectnessSweep*:*float32*" --gtest_output=xml --gtest_color=yes + ${sudo} NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./UnitTestsMultiProcess --gtest_filter="BroadcastMultiProcessCorrectnessSweep*:*float32*" --gtest_output=xml --gtest_color=yes """ platform.runCommand(this, command)