mirror of
https://github.com/BillyOutlast/flash-attention-prebuild-wheels-rocm.git
synced 2026-07-01 01:37:53 -04:00
Merge pull request #50 from mjun0812/feat/dynamic-matrix
fix: test workflow
This commit is contained in:
@@ -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
@@ -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,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user