Skip to content

[SW] Add rv_plic header file for Cheshire PLIC #47

[SW] Add rv_plic header file for Cheshire PLIC

[SW] Add rv_plic header file for Cheshire PLIC #47

Workflow file for this run

# Copyright 2022 ETH Zurich and University of Bologna.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# Author: Paul Scheffler <paulsc@iis.ee.ethz.ch>
name: lint
on: [ push, pull_request, workflow_dispatch ]
jobs:
lint-license:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Check license
uses: pulp-platform/pulp-actions/lint-license@v2.4.1
with:
license: |
Copyright (\d{4}(-\d{4})?\s)?(ETH Zurich and University of Bologna|Fondazione Chips-IT|lowRISC contributors).
(Solderpad Hardware License, Version 0.51|Licensed under the Apache License, Version 2.0), see LICENSE for details.
SPDX-License-Identifier: (SHL-0.51|Apache-2.0)
# Exclude generated headers (no license checker support for optional lines)
exclude_paths: |
sw/include/regs/*.h
lint-sv:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Run Verible
uses: chipsalliance/verible-linter-action@main
with:
paths: hw
exclude_paths: hw/future/UsbOhciAxi4.v
extra_args: "--waiver_files .github/verible.waiver"
github_token: ${{ secrets.GITHUB_TOKEN }}
fail_on_error: true
reviewdog_reporter: github-check
lint-cxx:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Run Clang-format
uses: DoozyX/clang-format-lint-action@v0.14
with:
extensions: 'c,h,cpp'
clangFormatVersion: 14
exclude: |
./sw/include/regs/*.h
./target/sim/src/elfloader.cpp
# lint-tcl:
# runs-on: ubuntu-latest
# steps:
# -
# name: Checkout
# uses: actions/checkout@v3
# -
# name: Install Python
# uses: actions/setup-python@v5
# with:
# python-version: 3.9
# cache: pip
# -
# name: Install Python requirements
# run: pip install -r requirements.txt
# -
# name: Run Tcllint
# run: tclint . --style-spaces-in-braces --style-line-length 100