diff --git a/.ci/compute_projects.py b/.ci/compute_projects.py index 9c2a9bc15cce..0ea4a84cccf2 100644 --- a/.ci/compute_projects.py +++ b/.ci/compute_projects.py @@ -64,7 +64,6 @@ DEPENDENTS_TO_TEST = { "mlir", "polly", "flang", - "libclc", "openmp", }, } @@ -83,7 +82,7 @@ DEPENDENT_RUNTIMES_TO_TEST = { "compiler-rt": {"compiler-rt"}, "flang": {"flang-rt"}, "flang-rt": {"flang-rt"}, - ".ci": {"compiler-rt", "libc", "flang-rt"}, + ".ci": {"compiler-rt", "libc", "flang-rt", "libclc"}, } DEPENDENT_RUNTIMES_TO_TEST_NEEDS_RECONFIG = { "llvm": {"libcxx", "libcxxabi", "libunwind"}, diff --git a/.ci/compute_projects_test.py b/.ci/compute_projects_test.py index fe1bf07eae8f..21cc2e7bc0bb 100644 --- a/.ci/compute_projects_test.py +++ b/.ci/compute_projects_test.py @@ -285,7 +285,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["projects_to_build"], - "bolt;clang;clang-tools-extra;flang;libclc;lld;lldb;llvm;mlir;polly", + "bolt;clang;clang-tools-extra;flang;lld;lldb;llvm;mlir;polly", ) self.assertEqual( env_variables["project_check_targets"], @@ -293,7 +293,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind", + "compiler-rt;flang-rt;libc;libclc;libcxx;libcxxabi;libunwind", ) self.assertEqual( env_variables["runtimes_check_targets"], @@ -310,7 +310,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["projects_to_build"], - "clang;clang-tools-extra;libclc;lld;llvm;mlir;polly", + "clang;clang-tools-extra;lld;llvm;mlir;polly", ) self.assertEqual( env_variables["project_check_targets"], @@ -318,7 +318,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "compiler-rt", + "compiler-rt;libclc", ) self.assertEqual( env_variables["runtimes_check_targets"], @@ -359,7 +359,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["projects_to_build"], - "bolt;clang;clang-tools-extra;flang;libclc;lld;lldb;llvm;mlir;polly", + "bolt;clang;clang-tools-extra;flang;lld;lldb;llvm;mlir;polly", ) self.assertEqual( env_variables["project_check_targets"], @@ -367,7 +367,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind", + "compiler-rt;flang-rt;libc;libclc;libcxx;libcxxabi;libunwind", ) self.assertEqual( env_variables["runtimes_check_targets"], @@ -394,7 +394,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["projects_to_build"], - "bolt;clang;clang-tools-extra;flang;libclc;lld;lldb;llvm;mlir;polly", + "bolt;clang;clang-tools-extra;flang;lld;lldb;llvm;mlir;polly", ) self.assertEqual( env_variables["project_check_targets"], @@ -402,7 +402,7 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind", + "compiler-rt;flang-rt;libc;libclc;libcxx;libcxxabi;libunwind", ) self.assertEqual( env_variables["runtimes_check_targets"],