docker_pypi_distribute.sh 312 Bytes
Newer Older
1
2
set -eux

3
# Get the CUDA version from the command line
4
5
IMAGE="tilelang-builder:manylinux"
docker build . -f "$(dirname "${BASH_SOURCE[0]}")/pypi.manylinux.Dockerfile" --tag ${IMAGE}
6

7
script="sh maint/scripts/pypi_distribution.sh"
8

9
docker run --rm -v $(pwd):/tilelang -w /tilelang ${IMAGE} /bin/bash -c "$script"