Migrate SCT verbose filter and datarouter filter tests to integration #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ******************************************************************************* | |
| # Copyright (c) 2025 Contributors to the Eclipse Foundation | |
| # | |
| # See the NOTICE file(s) distributed with this work for additional | |
| # information regarding copyright ownership. | |
| # | |
| # This program and the accompanying materials are made available under the | |
| # terms of the Apache License Version 2.0 which is available at | |
| # https://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # ******************************************************************************* | |
| name: Component Tests | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| component-tests: | |
| name: Run Component Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4.2.2 | |
| - name: Setup Bazel | |
| uses: bazel-contrib/setup-bazel@0.15.0 | |
| with: | |
| bazelisk-version: 1.26.0 | |
| disk-cache: true | |
| repository-cache: true | |
| bazelisk-cache: true | |
| - name: Bazel info (discover paths) | |
| id: bazel-info | |
| run: | | |
| echo "BAZEL_OUTPUT_BASE=$(bazel info output_base)" >> $GITHUB_ENV | |
| echo "BAZEL_REPO_CACHE=$(bazel info repository_cache)" >> $GITHUB_ENV | |
| bazel info | |
| - name: Cache Bazel output base | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ${{ env.BAZEL_OUTPUT_BASE }}/action_cache | |
| ${{ env.BAZEL_OUTPUT_BASE }}/bazel-out | |
| ${{ env.BAZEL_OUTPUT_BASE }}/external | |
| ${{ env.BAZEL_OUTPUT_BASE }}/execroot | |
| key: bazel-ob-component-v1-${{ runner.os }}-${{ hashFiles('.bazelversion', 'MODULE.bazel', 'MODULE.bazel.lock', '**/*.bzl') }} | |
| restore-keys: | | |
| bazel-ob-component-v1-${{ runner.os }}- | |
| - name: Run component tests | |
| run: | | |
| bazel test --lockfile_mode=error --config x86_64-linux \ | |
| --test_tag_filters=integration \ | |
| --test_output=errors \ | |
| //score/test/component/datarouter:test_datarouter_filters \ | |
| //score/test/component/mw_log:test_mw_log \ | |
| //score/test/component/mw_log:test_mw_log_filters |