mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-17 10:41:27 +00:00
11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BUILD="$1"
|
|
|
|
jobs_in_build=$(openqa-cli api jobs build="$BUILD" | jq -r '.jobs[].id' | xargs)
|
|
|
|
for id in $jobs_in_build
|
|
do
|
|
openqa-cli api -X POST "jobs/$id/cancel"
|
|
done
|