Skip to content

Commit

Permalink
[hotfix][build] Use different name for each job
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardBang committed Jun 14, 2023
1 parent a95659e commit 63d7c9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/azure-pipelines/jobs-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
targetPath: $(FLINK_ARTIFACT_DIR)
artifact: FlinkCompileArtifact-${{parameters.stage_name}}

- job: test_${{parameters.stage_name}}
- job: test_1_${{parameters.stage_name}}
dependsOn: compile_${{parameters.stage_name}}
condition: and(succeeded(), not(eq(variables['MODE'], 'e2e')))
pool: ${{parameters.test_pool_definition}}
timeoutInMinutes: 60
timeoutInMinutes: 70
cancelTimeoutInMinutes: 1
workspace:
clean: all
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
targetPath: $(DEBUG_FILES_OUTPUT_DIR)
artifact: logs-${{parameters.stage_name}}-$(DEBUG_FILES_NAME)

- job: test_${{parameters.stage_name}}
- job: test_2_${{parameters.stage_name}}
dependsOn: compile_${{parameters.stage_name}}
condition: and(succeeded(), not(eq(variables['MODE'], 'e2e')))
pool: ${{parameters.test_pool_definition}}
Expand Down

0 comments on commit 63d7c9e

Please sign in to comment.