Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Run functional regression checks
name: ci
on: [push, pull_request]
on: [pull_request, workflow_dispatch]

jobs:
build-riscv-tests:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 2024 PULP Platform
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0

# Author: Nils Wistoff <nwistoff@iis.ee.ethz.ch>

name: integration
on: [ pull_request, workflow_dispatch ]

jobs:
cheshire-integration:
runs-on: ubuntu-latest
timeout-minutes: 200
# Skip on forks due to missing secrets.
if: github.repository == 'pulp-platform/cva6' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
steps:
- name: Integrate into cheshire
uses: pulp-platform/pulp-actions/integrate@v2.3.0
with:
ip-name: cva6
org: pulp-platform
repo: cheshire
base-ref: 4098faa23b8686e7a53936634dfd9fee6e88ede9
token: ${{ secrets.CHESHIRE_TOKEN }}
lifetime: 14
18 changes: 18 additions & 0 deletions .github/workflows/pulp-gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: pulp-gitlab-ci

on: [ push, pull_request, workflow_dispatch ]

jobs:
pulp-gitlab-ci:
runs-on: ubuntu-latest
timeout-minutes: 60
# Skip on forks or pull requests from forks due to missing secrets.
if: github.repository == 'pulp-platform/cva6' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
steps:
- name: Check Gitlab CI
uses: pulp-platform/pulp-actions/gitlab-ci@v2.4.5
with:
domain: iis-git.ee.ethz.ch
repo: github-mirror/cva6
token: ${{ secrets.GITLAB_TOKEN }}
poll-period: 30
6 changes: 3 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

name: 'Close stale issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: '30 1 * * *'
workflow_dispatch
# schedule:
# - cron: '30 1 * * *'

jobs:
stale:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/verible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
# SPDX-License-Identifier: Apache-2.0

name: Verible
on:
pull_request_target:
on: [push, pull_request, workflow_dispatch]

jobs:
format:
Expand All @@ -13,6 +12,8 @@ jobs:
checks: write
contents: read
pull-requests: write
# Skip on forks due to missing secrets.
if: github.repository == 'pulp-platform/cva6' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -22,3 +23,4 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
files: '$(find core -regex ".*\.\(v\|sv\)$" | grep -v "^core/include/.*_config_pkg\.sv$")'
fail_on_formatting_suggestions: true
reviewdog_reporter: github-check
Loading
Loading