mirror of
https://github.com/bentoml/OpenLLM.git
synced 2025-12-23 23:57:46 -05:00
15 lines
451 B
Bash
Executable File
15 lines
451 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
cd "$GIT_ROOT" || exit 1
|
|
|
|
[[ -x "$(command -v docker)" ]] || (
|
|
echo "docker not found. Make sure to have docker running to run this job."
|
|
exit 1
|
|
)
|
|
|
|
RATCHET_EXP_KEEP_NEWLINES=true find "${GIT_ROOT}/.github/workflows" -type f -iname '*.yml' -exec docker run -it --rm -v "${PWD}":"${PWD}" -w "${PWD}" -e RATCHET_EXP_KEEP_NEWLINES=true ghcr.io/sethvargo/ratchet:0.4.0 pin {} \;
|