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
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 }}";