This change creates an scheduler::limiter class which tracks and limits how many elections can be spawned. #5724
Workflow file for this run
This file contains 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
name: Static Analyzers | |
on: [push, pull_request] | |
jobs: | |
clang_format: | |
runs-on: ubuntu-20.04 | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
steps: | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 #v3.1.0 | |
- name: Installing clang-format 12 | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: sudo apt-get install clang-format-12 | |
- name: Check clang-format | |
run: ci/clang-format-check.sh | |
cmake_format: | |
runs-on: ubuntu-20.04 | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
steps: | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 #v3.1.0 | |
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 #v4.3.0 | |
with: | |
python-version: '3.x' | |
architecture: 'x64' | |
- uses: BSFishy/pip-action@8f2d471d809dc20b6ada98c91910b6ae6243f318 | |
with: | |
packages: | | |
cmake-format | |
- name: Check cmake-format | |
run: ci/cmake-format-check.sh | |
code_inspector: | |
runs-on: ubuntu-20.04 | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
steps: | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 #v3.1.0 | |
- name: Run code-inspector | |
run: ci/code-inspector-check.sh |