diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-09-11 21:20:46 +0200 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-09-13 15:05:42 +0200 |
| commit | a589e61c2b807196696632eb17e8ad573daa9c08 (patch) | |
| tree | 254b6eb0c5a31de0cc94380ebdc00489ba54d010 /test/script/artifact.et | |
| parent | 73a141316db78b942160b11bdb3c92208f3eddd6 (diff) | |
Use colon as preferred job ID separator
Changelog: Colon `:` is now accepted and preferred as job ID separator.
Diffstat (limited to 'test/script/artifact.et')
| -rw-r--r-- | test/script/artifact.et | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/script/artifact.et b/test/script/artifact.et index d353b49..c8a726c 100644 --- a/test/script/artifact.et +++ b/test/script/artifact.et @@ -11,14 +11,14 @@ test ExtractArtifact: expect /job-finish generate done/ from p local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.first", "extracted" ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:first", "extracted" ] local: shell on n as s: cat ./extracted expect /content 1/ from s local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.second", "generate.third", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:second", "generate:third", "." ] local: shell on n as s: cat ./f2 @@ -27,7 +27,7 @@ test ExtractArtifact: expect /content 3/ from s local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.dir", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:dir", "." ] local: shell on n as s: cat ./dir/f2 @@ -38,7 +38,7 @@ test ExtractArtifact: expect /content b/ from s local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.sdir", "extracted_subdir" ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:sdir", "extracted_subdir" ] local: shell on n as s: cat ./extracted_subdir/fb @@ -61,7 +61,7 @@ test ExtractArtifactForce: local: shell on n: touch extracted - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.first", "extracted" ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:first", "extracted" ] local: shell on n as s: cat ./extracted @@ -71,13 +71,13 @@ test ExtractArtifactForce: #local: # shell on n: # touch f1 - # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.first", "." ] + # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:first", "." ] #local: local: shell on n: touch f1 - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.first", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:first", "." ] local: shell on n as s: cat ./f1 @@ -88,14 +88,14 @@ test ExtractArtifactForce: # shell on n: # mkdir dir # touch dir/existing_file - # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.dir", "." ] + # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:dir", "." ] #local: local: shell on n: mkdir dir touch dir/existing_file - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.dir", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:dir", "." ] local: shell on n as s: ls dir @@ -110,13 +110,13 @@ test ExtractArtifactForce: #local: # shell on n: # touch dir - # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.dir", "." ] + # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:dir", "." ] #local: local: shell on n: touch dir - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.dir", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:dir", "." ] local: shell on n as s: ls dir |