aboutsummaryrefslogtreecommitdiff
path: root/contrib/ci/run-all-jobs
diff options
context:
space:
mode:
authorNullptrderef <nullptrderef@proton.me>2024-06-16 13:56:11 +0200
committerNullptrderef <nullptrderef@proton.me>2024-06-16 13:56:11 +0200
commit3cbfa7ab59d37b53724c15fed55a4880745db6a6 (patch)
treecf0e9b5ad27b04be38bf63f9d8092bec1d122ad5 /contrib/ci/run-all-jobs
parentea28f2d34f308f812076e0128b1799acf8c686dd (diff)
generate ci targets
Diffstat (limited to 'contrib/ci/run-all-jobs')
-rwxr-xr-xcontrib/ci/run-all-jobs5
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;