import: import log crate as baseline #14
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
| # Workflow configuration for S-CORE CI - Bazel Build & Test baselibs | |
| # This workflow runs Bazel build and test when triggered by specific pull request events. | |
| name: Bazel Build & Test baselibs (with host toolchain GCC12.2) | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| build_and_test_gcc_host_gcc12: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4.2.2 | |
| - name: Setup Bazel | |
| uses: bazel-contrib/setup-bazel@0.9.1 | |
| - name: Bazel build baselibs targets | |
| run: | | |
| bazel build //score/... | |
| - name: Bazel test baselibs targets | |
| run: | | |
| bazel test //score/... \ | |
| --build_tests_only -- \ | |
| -//score/language/safecpp/aborts_upon_exception:abortsuponexception_toolchain_test \ | |
| -//score/containers:dynamic_array_test |