Skip to content

Commit 890fbfe

Browse files
committed
Merge remote-tracking branch 'origin/master' into drt_abutment_debug
2 parents f3c0c51 + 99a3fc3 commit 890fbfe

628 files changed

Lines changed: 35353 additions & 32859 deletions

File tree

Some content is hidden

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

.bazelrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ build:asan --copt -g
4141
build:asan --copt -fno-omit-frame-pointer
4242
build:asan --linkopt -fsanitize=address
4343

44+
# Flags with enough debug symbols to get useful outputs with Linux `perf`
45+
build:profile --strip=never
46+
build:profile --copt -g
47+
build:profile --copt -gmlt
48+
build:profile --copt -fno-omit-frame-pointer
49+
4450
# TODO: document
4551
build --incompatible_strict_action_env
4652

.github/workflows/black.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
name: Lint Python
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
410

511
jobs:
612
lint:
713
runs-on: ubuntu-latest
814
steps:
915
- name: Checkout Code
10-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1117
- name: Run black
1218
uses: psf/black@stable

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
name: Check That ODB Files Are Generated
2+
23
on:
3-
# Triggers the workflow on push or pull request events
44
push:
5+
branches:
6+
- master
57
pull_request:
8+
branches:
9+
- master
610

711
jobs:
812
format:

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: clang-tidy-review
22

33
on:
44
pull_request:
5+
branches:
6+
- master
57

68
jobs:
79
build:
@@ -20,8 +22,15 @@ jobs:
2022
config_file: '.clang-tidy'
2123
exclude: "*/codeGenerator/templates/*"
2224
split_workflow: true
23-
apt_packages: libomp-15-dev
25+
apt_packages: libomp-15-dev,libfl-dev
2426
- uses: The-OpenROAD-Project/clang-tidy-review/upload@master
2527
id: upload-review
28+
- name: Correct Build Directory Ownership
29+
if: always()
30+
run: |
31+
echo "Attempting to change ownership of ${{ github.workspace }} back to runner user..."
32+
sudo /usr/bin/chown -R $(id -u):$(id -g) ${{ github.workspace }}
33+
echo "Ownership change attempt finished."
34+
shell: bash
2635
- if: steps.review.outputs.total_comments > 0
2736
run: exit 1

.github/workflows/github-actions-docs-test.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: Format Code with pre commit trigger
2+
23
on:
3-
# Triggers the workflow on push or pull request events
44
push:
5+
branches:
6+
- master
57
pull_request:
6-
# Allows you to run this workflow manually from the Actions tab
7-
workflow_dispatch:
8+
branches:
9+
- master
810

911
jobs:
1012
format:

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
name: Lint Tcl code
22

33
on:
4+
push:
5+
branches:
6+
- master
47
pull_request:
8+
branches:
9+
- master
510

611
jobs:
712
build:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Scan Code with pre commit trigger
2+
23
on:
3-
# Triggers the workflow on push or pull request events
44
push:
55
pull_request:
6-
# Allows you to run this workflow manually from the Actions tab
7-
workflow_dispatch:
6+
branches:
7+
- master
88

99
jobs:
1010
scan:

0 commit comments

Comments
 (0)