Merge pull request #50 from mjun0812/feat/dynamic-matrix

fix: test workflow
This commit is contained in:
Junya Morioka
2025-11-02 01:03:38 +09:00
committed by GitHub
2 changed files with 16 additions and 12 deletions
+2 -1
View File
@@ -14,7 +14,8 @@ jobs:
- name: Create Matrix - name: Create Matrix
id: create_matrix id: create_matrix
run: | run: |
echo "matrix=$(python create_matrix.py)" >> $GITHUB_OUTPUT python create_matrix.py | tee /tmp/matrix.json
echo "matrix=$(cat /tmp/matrix.json)" >> $GITHUB_OUTPUT
# ######################################################### # #########################################################
# Linux # Linux
+14 -11
View File
@@ -57,17 +57,20 @@ WINDOWS_CODEBUILD_MATRIX = {
def main(): def main():
json.dump( print(
{ json.dumps(
"linux": LINUX_MATRIX, {
# "linux_self_hosted": LINUX_SELF_HOSTED_MATRIX, "linux": LINUX_MATRIX,
"linux_self_hosted": False, # "linux_self_hosted": LINUX_SELF_HOSTED_MATRIX,
# "windows": WINDOWS_MATRIX, "linux_self_hosted": False,
"windows": False, # "windows": WINDOWS_MATRIX,
# "windows_code_build": WINDOWS_CODEBUILD_MATRIX, "windows": False,
"windows_code_build": False, # "windows_code_build": WINDOWS_CODEBUILD_MATRIX,
"exclude": EXCLUDE, "windows_code_build": False,
} "exclude": EXCLUDE,
}
),
indent=2,
) )