From 9deb9574f33083f1574f11f5c78452520cfd6de9 Mon Sep 17 00:00:00 2001 From: Derek Foster Date: Sun, 2 Feb 2025 09:58:32 -0800 Subject: [PATCH] Remove bcm_unit_tests from pipeline - The `bcm_unit_tests` job in the GitHub actions pipeline fails because the Stratum build reports an Unknown host: docs.broadcom.com error when it attempts to download the Broadcom SDK. Removed the job from the pipeline. Signed-off-by: Derek Foster --- .github/workflows/pipeline.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index dddb7449d..a01f46060 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -69,32 +69,6 @@ jobs: export SDE_INSTALL=$SDE_INSTALL_DIR xargs -a .github/dpdk-tests.txt bazel test --define target=dpdk --test_tag_filters=-broken,-flaky - #--------------------------------------------------------------------- - # bcm_unit_tests - #--------------------------------------------------------------------- - bcm_unit_tests: - runs-on: ubuntu-20.04 - - steps: - - name: Clone stratum repository - uses: actions/checkout@v4 - - - name: Mount bazel cache - uses: actions/cache@v4 - with: - path: "~/.cache/bazel" - key: bazel-${{ runner.os }}-bcm-tests-${{ hashFiles('WORKSPACE', '**/*.bzl', '**/BUILD') }} - restore-keys: | - bazel-${{ runner.os }}-bcm-tests- - - - name: Install prerequisites - run: | - sudo apt install libelf-dev - - - name: Run unit tests - run: | - bazel test //stratum/hal/lib/bcm/... - #--------------------------------------------------------------------- # cdlang_tests (gNMI) #---------------------------------------------------------------------