diff options
author | Nullptrderef <nullptrderef@proton.me> | 2024-06-16 13:56:11 +0200 |
---|---|---|
committer | Nullptrderef <nullptrderef@proton.me> | 2024-06-16 13:56:11 +0200 |
commit | 3cbfa7ab59d37b53724c15fed55a4880745db6a6 (patch) | |
tree | cf0e9b5ad27b04be38bf63f9d8092bec1d122ad5 /contrib/ci/run-all-jobs | |
parent | ea28f2d34f308f812076e0128b1799acf8c686dd (diff) |
generate ci targets
Diffstat (limited to 'contrib/ci/run-all-jobs')
-rwxr-xr-x | contrib/ci/run-all-jobs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/ci/run-all-jobs b/contrib/ci/run-all-jobs new file mode 100755 index 000000000..a4837191c --- /dev/null +++ b/contrib/ci/run-all-jobs @@ -0,0 +1,5 @@ +#!/bin/bash +set -eax +for JOB in $(ls $(dirname $0)/jobs | sort -n); do + $(dirname $0)/ci.sh $JOB; +done; |