Skip to content

Commit

Permalink
try: less blacklist files from release
Browse files Browse the repository at this point in the history
try: less blacklist files from release
  • Loading branch information
Edison-CBS committed Sep 15, 2024
1 parent 43542c0 commit f7d9463
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ AddOption('--pc-thneed',
AddOption('--minimal',
action='store_false',
dest='extras',
default=os.path.exists(File('#.lfsconfig').abspath), # minimal by default on release branch (where there's no LFS)
default=os.path.islink(Dir('#rednose/').abspath), # minimal by default on release branch (where rednose is not a link)
help='the minimum build to run openpilot. no tests, tools, etc.')

## Architecture name breakdown (arch)
Expand Down
10 changes: 0 additions & 10 deletions release/release_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,8 @@
"panda/examples/",
"panda/tests/safety/",

"opendbc_repo/dbc/.*.dbc$",
"opendbc_repo/dbc/generator/",

"cereal/.*test.*",
"^common/tests/",

# particularly large text files
"uv.lock",
"third_party/catch2",
"selfdrive/car/tests/test_models.*",

"^tools/",
"^tinygrad_repo/",

Expand Down Expand Up @@ -122,7 +113,6 @@
"opendbc_repo/dbc/vw_mqb_2010.dbc",
]


if __name__ == "__main__":
for f in Path(ROOT).rglob("**/*"):
if not (f.is_file() or f.is_symlink()):
Expand Down

0 comments on commit f7d9463

Please sign in to comment.