]> xenbits.xensource.com Git - unikraft/unikraft.git/commitdiff
.github/workflows: Wait once before checking 1547/head
authorCezar Craciunoiu <cezar.craciunoiu@gmail.com>
Wed, 13 Nov 2024 15:12:17 +0000 (17:12 +0200)
committerUnikraft Bot <monkey@unikraft.io>
Tue, 19 Nov 2024 10:55:53 +0000 (10:55 +0000)
Because there is no pause between steps, the start-stop
interval is usually 1s or less. This does not allow for
the jobs to even enter pending state.

This introduces another sleep before doing anything to
ensure that the interval is big enough.

Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@gmail.com>
Reviewed-by: Alexander Jung <alex@unikraft.io>
Reviewed-by: Razvan Deaconescu <razvand@unikraft.io>
Approved-by: Razvan Deaconescu <razvand@unikraft.io>
GitHub-Closes: #1538

.github/workflows/integration.yaml

index f110e8bdaae76bcd679237bfd7aa08842e348252..6a6bc240de296634c476e9b0086d5331be74d33b 100644 (file)
@@ -242,6 +242,9 @@ jobs:
         run: |
           set -e;
 
+          # Wait for all tests to start
+          sleep 30;
+
           today=$(date -u +"%Y-%m-%d");
           stop=$(date -u +"%Y-%m-%dT%H:%M:%SZ");
           start="${{ steps.start_time.outputs.start }}";