Skip to content

Commit 6da4120

Browse files
committed
fix too long job names
1 parent c37d96f commit 6da4120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vinca/generate_azure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ def main():
558558
pkg_jobname = '_'.join([normalize_name(pkg) for pkg in batch])
559559
stage["jobs"].append(
560560
{
561-
"job": pkg_jobname,
561+
"job": f"stage_{i}_job_{len(stage['jobs'])}",
562562
"variables": {"CONDA_BLD_PATH": "C:\\\\bld\\\\"},
563563
"steps": [
564564
{

0 commit comments

Comments
 (0)