From 216636010baa216a225cced72acfb39155f272dc Mon Sep 17 00:00:00 2001 From: bottler Date: Thu, 12 Jan 2023 17:40:41 +0000 Subject: [PATCH] artifacts fix ghstack-source-id: 4612e27d0330194613e03fb7bb41c9138a4d346b Pull Request resolved: https://github.com/fairinternal/xformers/pull/424 __original_commit__ = fairinternal/xformers@f5d06d0191c83f2516a5ebf8d7a9d0959c3726e9 --- packaging/build_conda.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packaging/build_conda.py b/packaging/build_conda.py index a131a19fc8..8417a188a3 100644 --- a/packaging/build_conda.py +++ b/packaging/build_conda.py @@ -158,7 +158,8 @@ def move_artifacts_to_store(self): assert not self.build_inside_tree artifacts = Path("artifacts") artifacts.mkdir(exist_ok=True) - for filename in Path("../build").resolve().glob("*.bz2"): + for filename in Path("../build/linux-64").resolve().glob("*.bz2"): + print("moving", filename) shutil.move(filename, artifacts) def build_in_docker(self) -> None: