Skip to content

Commit 6428ec4

Browse files
committed
Merge branch 'master' into est_via_res
Signed-off-by: Eder Monteiro <[email protected]>
2 parents 7ec5867 + 74dbef2 commit 6428ec4

File tree

111 files changed

+694
-430
lines changed

Some content is hidden

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

111 files changed

+694
-430
lines changed

.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/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

.scalafmt.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
version = "3.7.15"
2+
runner.dialect = scala213

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ workspace(name = "openroad")
88

99
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1010

11-
rules_hdl_git_hash = "cf2bd95334741db74b39b47fa1d4622b0d45ce6c"
11+
rules_hdl_git_hash = "8cc8977cc305ed94ec7852495ed576fcbde1c18d"
1212

13-
rules_hdl_git_sha256 = "137e1fbde970a41f295ca348f9105bc7eedd6640374ec7f4a8abaee9a2cfc2d0"
13+
rules_hdl_git_sha256 = "046193f4a0b006f43bd5f9615c218d2171d0169e231028a22d8d9c011c675ad6"
1414

1515
http_archive(
1616
name = "rules_hdl",

src/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ if (NOT USE_SYSTEM_OPENSTA)
257257
endif()
258258
add_subdirectory(dbSta)
259259
add_subdirectory(rsz)
260+
add_subdirectory(tst)
260261
add_subdirectory(stt)
261262
add_subdirectory(gpl)
262263
add_subdirectory(dpl)

src/ant/src/AntennaChecker.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <memory>
1414
#include <mutex>
1515
#include <set>
16+
#include <string>
1617
#include <unordered_map>
1718
#include <utility>
1819
#include <vector>

src/cts/src/HTreeBuilder.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "Clustering.h"
1616
#include "SinkClustering.h"
1717
#include "odb/db.h"
18+
#include "odb/isotropy.h"
1819
#include "utl/Logger.h"
1920

2021
namespace cts {

src/cts/src/HTreeBuilder.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "CtsOptions.h"
1616
#include "TreeBuilder.h"
1717
#include "odb/db.h"
18+
#include "odb/isotropy.h"
1819

1920
namespace cts {
2021
class Graphics;

src/cut/test/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ cc_test(
1111
"//src/cut",
1212
"//src/dbSta",
1313
"//src/dbSta:dbReadVerilog",
14+
"//src/tst",
1415
"@googletest//:gtest",
1516
"@googletest//:gtest_main",
1617
],

src/cut/test/cpp/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ target_link_libraries(CutGTests
1010
utl_lib
1111
libabc
1212
cut
13+
tst
1314
${TCL_LIBRARY}
1415
)
1516

0 commit comments

Comments
 (0)