commit | a4e52908b8c7d10471d5a978c15fb98cb0a0a9d1 | [log] [tgz] |
---|---|---|
author | Mohammed Naser <mnaser@vexxhost.com> | Tue Aug 30 00:20:05 2022 -0400 |
committer | Mohammed Naser <mnaser@vexxhost.com> | Tue Aug 30 00:20:05 2022 -0400 |
tree | 2b116eee591ca1cbb87262fa9c79e89807e5f9aa | |
parent | 9a6dd4bced8038e72c0a0f86b25a400fa6153949 [diff] [blame] |
Parallelize builds
diff --git a/ci/build-project-matrix b/ci/build-project-matrix new file mode 100755 index 0000000..29a7e8d --- /dev/null +++ b/ci/build-project-matrix
@@ -0,0 +1,12 @@ +#!/usr/bin/env python3 + +import glob +import sys +import json + + +json.dump( + sorted([r.split("/")[-1] for r in glob.glob("images/openstack/projects/*")]), + sys.stdout, + separators=(",", ":"), +)