Skip to content

Commit

Permalink
[query] Exclude benchmark/ from hail wheel (#14764)
Browse files Browse the repository at this point in the history
## Change Description
This change prevents packaging benchmark code in the hail wheel by
updating the rsync exclude patterns in `hail/Makefile` to exclude
`benchmark/`.

## Security Assessment

This change has no security impact

### Impact Description

Low-level build configuration change that only affects which directories
are excluded during file copying operations.
  • Loading branch information
ehigham authored Dec 11, 2024
1 parent ea00578 commit 6dee8a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hail/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,10 @@ copy-py-files: $(PYTHON_VERSION_INFO) $(INIT_SCRIPTS) $(PY_FILES) $(PYTHON_JAR)
cp ../README.md build/deploy/
rsync -r \
--exclude '.eggs/' \
--exclude '.mypy_cache/' \
--exclude '.pytest_cache/' \
--exclude '__pycache__/' \
--exclude 'benchmark_hail/' \
--exclude '.mypy_cache/' \
--exclude 'benchmark/' \
--exclude 'docs/' \
--exclude 'dist/' \
--exclude 'test/' \
Expand Down

0 comments on commit 6dee8a2

Please sign in to comment.