[hw/ip/spatz] fix: also buffer instr id from FPU #177
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
# Copyright 2023 ETH Zurich and University of Bologna. | |
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: gitlab-ci | |
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 | |
with: | |
license: | | |
Copyright (\d{4}(-\d{4})?\s)?(ETH Zurich and University of Bologna|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/* | |
util/* | |
docs/* | |
install/* | |
hw/ip/snitch/src/riscv_instr.sv | |
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/ip/snitch/src/riscv_instr.sv | |
extra_args: "--waiver_files .github/verible.waiver" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
fail_on_error: true | |
reviewdog_reporter: github-check | |
gitlab-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Gitlab CI | |
uses: pulp-platform/pulp-actions/gitlab-ci@v2 | |
# Skip on forks or pull requests from forks due to missing secrets. | |
if: github.repository == 'pulp-platform/spatz' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) | |
with: | |
domain: iis-git.ee.ethz.ch | |
repo: github-mirror/spatz | |
token: ${{ secrets.GITLAB_TOKEN }} | |
poll-count: 2160 |