mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-03 21:00:08 +06:00

* Add setup for TPU CI to run every hour. * Re-organize config.yml Co-authored-by: Lysandre <lysandre.debut@reseau.eseo.fr>
9 lines
247 B
Bash
9 lines
247 B
Bash
#!/bin/bash
|
|
source ~/.bashrc
|
|
echo "running docker-entrypoint.sh"
|
|
conda activate container
|
|
echo $KUBE_GOOGLE_CLOUD_TPU_ENDPOINTS
|
|
echo "printed TPU info"
|
|
export XRT_TPU_CONFIG="tpu_worker;0;${KUBE_GOOGLE_CLOUD_TPU_ENDPOINTS:7}"
|
|
exec "$@"#!/bin/bash
|