Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: jerryzhuang <[email protected]>
  • Loading branch information
zhuangqh committed Dec 20, 2024
1 parent 071d9fe commit ca9edad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/e2e-preset-configs.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"loads_adapter": false
},
{
"name": "qwen2-5-coder-7b-instruct",
"name": "qwen2.5-coder-7b-instruct",
"node-count": 1,
"node-vm-size": "Standard_NC12s_v3",
"node-osdisk-size": 100,
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-preset-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,15 @@ jobs:
# for model in MATRIX:
# for config in CONFIGS:
# if config['name'] == model['name']:
# # k8s doesn't allow '.' in names
# model['name'] = model['name'].replace('.', '-')
# combined = {**model, **config}
# COMBINED_MATRIX.append(combined)
# break
COMBINED_MATRIX=$(echo '${{ steps.affected_models.outputs.matrix }}' | jq --argjson configs "$CONFIGS" -c '
map(. as $model | $configs[] | select(.name == $model.name) | $model + .)
')
' | jq -c 'map(.name |= gsub("\\."; "-"))')
echo "full_matrix=$COMBINED_MATRIX" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit ca9edad

Please sign in to comment.