]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-pull-requests: do not use podman specific --timeout
authorJohn Mulligan <phlogistonjohn@asynchrono.us>
Thu, 2 Oct 2025 18:54:04 +0000 (14:54 -0400)
committerJohn Mulligan <phlogistonjohn@asynchrono.us>
Thu, 2 Oct 2025 18:54:35 +0000 (14:54 -0400)
Signed-off-by: John Mulligan <phlogistonjohn@asynchrono.us>
ceph-pull-requests/build/build

index 92f18bd82e7478129bcdf1bce8fbbafe2bc4bfa1..bef71793ada446e970c70a22e264898b74e4c215 100644 (file)
@@ -29,13 +29,12 @@ bwc() {
     # specify timeout in hours for $1
     local timeout=$(($1*60*60))
     shift
-    ./src/script/build-with-container.py \
+    timeout "${timeout}" ./src/script/build-with-container.py \
         -d "${DISTRO_BASE:-jammy}" \
         --env-file="${PWD}/.env" \
         --current-branch="${GIT_BRANCH:-main}" \
         -t+amd64 \
         --npm-cache-path="${NPMCACHE}" \
-        -x"--timeout=${timeout}" \
         "${@}"
 }