From 5060cdf7fc914dd8febdf7eaee21d85606490eca Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 4 Feb 2021 18:45:02 +0000 Subject: [PATCH] ci: Drop clang and unit tests from here We're running them in Prow now and we're hitting capacity issues in CentOS CI. Bigger picture, the "just build and unit test" stuff runs in any cluster, so let's save our bare metal capacity for our compose/VM testing. --- .cci.jenkinsfile | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index 64d304ed..bfd89297 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -22,24 +22,6 @@ codestyle: { ci/commit-validation.sh """) } -}, -unit: { - // this branch runs unit tests (both Rust-based and C-based) - def n = 5 - cosaPod(buildroot: true, runAsUser: 0, memory: "2Gi", cpu: "${n}") { - checkout scm - shwrap(""" - MAKE_JOBS=${n} CARGO_BUILD_JOBS=${n} ci/unit.sh - """) - } -}, -clang: { - // Build with clang/clang++ - def n = 5 - cosaPod(buildroot: true, runAsUser: 0, memory: "2Gi", cpu: "${n}") { - checkout scm - shwrap("MAKE_JOBS=${n} ci/clang-build-check.sh") - } } }