diff options
author | Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> | 2022-12-21 20:27:39 +0100 |
---|---|---|
committer | Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> | 2022-12-21 21:24:37 +0100 |
commit | e8c0a6df4a311b0ce82fdec6f5cbf2328b767808 (patch) | |
tree | 252491023c9eef4550338bf8df549de291de8689 /.gitlab-ci.yml | |
parent | 332168e258d157a2f8db5d03803b94676a7079e8 (diff) | |
download | debvm-e8c0a6df4a311b0ce82fdec6f5cbf2328b767808.tar.gz |
.gitlab-ci.yml: use timeout from coreutils instead of timelimit
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 624e0e3..b6ec557 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,9 +24,9 @@ simpletest: script: - apt-get update - apt-get dist-upgrade --yes - - apt-get --no-install-recommends --yes install e2fsprogs genext2fs mmdebstrap openssh-client qemu-kvm timelimit + - apt-get --no-install-recommends --yes install e2fsprogs genext2fs mmdebstrap openssh-client qemu-kvm - ssh-keygen -f ~/.ssh/id -N '' - ./debvm-create -k ~/.ssh/id.pub -r $RELEASE - - timelimit -t 120 -T 10 ./debvm-run -s 2222 & + - timeout 120s ./debvm-run -s 2222 & - sleep 15 - ssh -o StrictHostKeyChecking=no -i ~/.ssh/id -p 2222 root@localhost poweroff |