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-release-matrix b/ci/build-release-matrix new file mode 100755 index 0000000..25e689d --- /dev/null +++ b/ci/build-release-matrix
@@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +import glob +import sys +import json + + +json.dump([ + r.split('/')[-1] for r in glob.glob('images/openstack/releases/*') +], sys.stdout, separators=(',', ':'))