Add TaskManager
#5010
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 cocotb contributors | |
| # Licensed under the Revised BSD License, see LICENSE for details. | |
| # SPDX-License-Identifier: BSD-3-Clause | |
| name: CI | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }} | |
| cancel-in-progress: ${{ !(contains(github.ref, 'release/') || contains(github.ref, 'master')) }} | |
| on: | |
| # Run this workflow on every push to the master branch, or a stable branch. | |
| push: | |
| branches: | |
| - master | |
| - "stable/**" | |
| pull_request: | |
| branches: | |
| - master | |
| - 'stable/**' | |
| paths-ignore: | |
| # Skip running tests for changes only in: | |
| # Documentation | |
| - 'docs/**' | |
| # Dot-files not related to running tests | |
| - '.theia/**' | |
| - '.backportrc.json' | |
| - '.clang-format' | |
| - '.git-blame-ignore-revs' | |
| - '.gitignore' | |
| - '.gitpod.Dockerfile' | |
| - '.gitpod.yml' | |
| - '.pre-commit-config.yaml' | |
| - '.readthedocs.yml' | |
| # Information files | |
| - 'LICENSE' | |
| - 'README.md' | |
| - 'CONTRIBUTING.md' | |
| - 'MANIFEST.in' | |
| # Github files that aren't related to testing | |
| - '.github/issue_template.md' | |
| - '.github/PULL_REQUEST_TEMPLATE.md' | |
| - '.github/workflows/backport.yml' | |
| - '.github/workflows/benchmark.yml' | |
| - '.github/workflows/ecosystem-compat.yml' | |
| - '.github/workflows/experimental.yml' | |
| - '.github/workflows/extended.yml' | |
| - '.github/workflows/stale.yml' | |
| jobs: | |
| test_dev: | |
| name: Regression Tests | |
| uses: ./.github/workflows/regression-tests.yml | |
| with: | |
| nox_session_test_sim: dev_test_sim | |
| nox_session_test_nosim: dev_test_nosim | |
| collect_coverage: true | |
| group: ci-free | |
| test_dev_licensed: | |
| if: github.repository == 'cocotb/cocotb' | |
| name: Regression Tests | |
| uses: ./.github/workflows/regression-tests.yml | |
| with: | |
| nox_session_test_sim: dev_test_sim | |
| nox_session_test_nosim: dev_test_nosim | |
| collect_coverage: true | |
| group: ci-licensed |