-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splut publish workflow into sub jobs for each version to avoid disk l…
…imit
- Loading branch information
1 parent
5d36036
commit b386fbb
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env python | ||
|
||
import json | ||
from versions import VERSIONS | ||
|
||
jsonVersions = [] | ||
for ps_version, php_versions in VERSIONS.items(): | ||
jsonVersions.append(ps_version) | ||
|
||
print(json.dumps(jsonVersions)) |