Skip to content

Commit

Permalink
Remove ssh breakpoint; remove filtering of wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Raunak Bhagat committed Dec 1, 2024
1 parent 9643e7b commit 9c4486f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/ci-scripts/upload_wheel_to_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@
assert path_to_wheel_dir.exists(), f"Path to wheel directory does not exist: {path_to_wheel_dir}"
wheelpaths = iter(filepath for filepath in path_to_wheel_dir.iterdir() if filepath.suffix == constants.WHEEL_SUFFIX)

print(f"{platform_substring=}")

def f(wheelpath: Path) -> bool:
platform_tag = wheellib.get_platform_tag(wheelpath.name)
return platform_substring in platform_tag
print(f"{platform_tag=}")
print(platform_substring in platform_tag)
return True

filtered_wheelpaths: list[Path] = list(filter(f, wheelpaths))

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ jobs:
source .venv/bin/activate
uv pip install pip maturin boto3
maturin build --release
- uses: lhotari/action-upterm@v1
- name: Upload wheel to AWS S3
run: |
if [ "$wheel_name" ]; then
Expand Down

0 comments on commit 9c4486f

Please sign in to comment.