Skip to content

Commit a097a22

Browse files
committed
Merge branch 'master' into mpl-redundant-connections
2 parents 19661d7 + 128cb11 commit a097a22

File tree

278 files changed

+84180
-2305
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+84180
-2305
lines changed

.clang-tidy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ CheckOptions:
6565

6666
# All modules but sta
6767
# Exclude build as there is too much noise from swig generated code
68-
HeaderFilterRegex: "(?!build/.*)/(ant|cts|dbSta|dft|dpl|drt|dst|est|exa|fin|gpl|grt|gui|ifp|mpl|odb|ord|pad|par|pdn|ppl|psm|rcx|rmp|rsz|stt|tap|upf|utl)/.*"
68+
HeaderFilterRegex: "(?!build/.*)/(ant|cgt|cts|cut|dbSta|dft|dpl|drt|dst|est|exa|fin|gpl|grt|gui|ifp|mpl|odb|ord|pad|par|pdn|ppl|psm|rcx|ram|rmp|rsz|stt|tap|upf|utl)/.*"
6969

7070
# Not currently handling identifier naming
7171
# WarningsAsErrors: "*"

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "gitsubmodule"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

.github/workflows/black.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
1414
steps:
1515
- name: Checkout Code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Run black
1818
uses: psf/black@stable

.github/workflows/github-actions-are-differences-found.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
99
steps:
1010
- name: Check out repository code
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
with:
1313
fetch-depth: 0
1414
- name: Check ok files

.github/workflows/github-actions-are-odb-files-generated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
1414
steps:
1515
- name: Check out repository code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
submodules: 'recursive'

.github/workflows/github-actions-clang-tidy-post.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
# Downloads the artifact uploaded by the lint action
1515
- name: 'Download artifact'
16-
uses: actions/github-script@v6
16+
uses: actions/github-script@v8
1717
with:
1818
script: |
1919
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/workflows/github-actions-clang-tidy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ name: clang-tidy-review
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- master
77

88
jobs:
99
Clang-Tidy:
1010
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
15-
submodules: 'recursive'
15+
submodules: "recursive"
1616
- name: ClangTidy Gen
1717
uses: The-OpenROAD-Project/clang-tidy-review@master
1818
id: review
1919
with:
20-
build_dir: './build'
20+
build_dir: "./build"
2121
cmake_command: cmake . -B build
22-
config_file: '.clang-tidy'
22+
config_file: ".clang-tidy"
2323
exclude: "*/codeGenerator/templates/*,*/third-party/*"
2424
split_workflow: true
25-
apt_packages: libomp-15-dev,libfl-dev
25+
apt_packages: libomp-15-dev,libfl-dev,libyaml-cpp-dev
2626
- uses: The-OpenROAD-Project/clang-tidy-review/upload@master
2727
id: upload-review
2828
- name: Correct Build Directory Ownership

.github/workflows/github-actions-format-on-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
1414
steps:
1515
- name: Check out repository code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
- name: Get changed files
2020
id: changed-files
21-
uses: tj-actions/changed-files@v46
21+
uses: tj-actions/changed-files@v47
2222
- name: Check format of cpp changed files
2323
run: |
2424
clang-format --version

.github/workflows/github-actions-lint-tcl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
submodules: 'recursive'
1919
- name: Install Dependencies

.github/workflows/github-actions-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
xcode-version: latest-stable
1717
- name: Check out repository code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
submodules: 'recursive'
2121
- name: Install dependencies
@@ -47,7 +47,7 @@ jobs:
4747
rm -rf "${{ github.workspace }}"
4848
mkdir -p "${{ github.workspace }}"
4949
- name: Check out repository code
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
submodules: 'recursive'
5353
- name: Build OpenROAD

0 commit comments

Comments
 (0)