From be9f2ed6f87670b695166ca2cfad2eb3b7f1bbc8 Mon Sep 17 00:00:00 2001 From: Krzysztof Juszczyk Date: Wed, 30 Oct 2024 13:55:10 +0100 Subject: [PATCH] Add job that sleeps for 1h --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 354eecf..6ea45f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,3 +60,11 @@ jobs: - run: apt -qqy update && apt -qqy install iputils-ping iproute2 - run: ip a - run: ping -c 3 ipv6.google.com + + sleep-test: + container: debian:bullseye + runs-on: [self-hosted, Linux, X64] + env: + GHA_PREEMPTIBLE: "false" + steps: + - run: sleep 3600 \ No newline at end of file