Skip to content

Commit

Permalink
py: add helper script for sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
janden committed Sep 10, 2024
1 parent 349a52c commit b32801b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tools/common/sdist-helper.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash

set -e -x

dockerhub=janden
image=finufft-sdist

docker build --file tools/common/docker/Dockerfile-x86_64 \
--tag ${dockerhub}/${image} \
.

docker run --volume $(pwd)/wheelhouse:/io/wheelhouse \
${dockerhub}/${image} \
/io/finufft/tools/finufft/build-sdist.sh

docker run --volume $(pwd)/wheelhouse:/io/wheelhouse \
${dockerhub}/${image} \
/io/finufft/tools/cufinufft/build-sdist.sh

0 comments on commit b32801b

Please sign in to comment.