Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI][aot] Do not overwrite scenarios argument if they were passed #103229

Merged
merged 10 commits into from
Jun 12, 2024
Prev Previous commit
Next Next commit
String -> array.
  • Loading branch information
ilonatommy committed Jun 11, 2024
commit 7e72824ab2cbbd2c30d87feb56ce674676116ad4
4 changes: 2 additions & 2 deletions eng/pipelines/common/templates/wasm-library-aot-tests.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ parameters:
runAOT: false
shouldRunSmokeOnly: false
shouldContinueOnError: false
scenarios: ''
scenarios: []

jobs:

@@ -32,7 +32,7 @@ jobs:
shouldRunSmokeOnly: ${{ parameters.shouldRunSmokeOnly }}
shouldContinueOnError: ${{ parameters.shouldContinueOnError }}
scenarios:
- ${{ if eq(parameters.scenarios, '') }}:
- ${{ if ne(parameters.scenarios[0], '') }}:
- ${{ parameters.scenarios }}
- ${{ else }}:
- ${{ if eq(platform, 'browser_wasm') }}:
Loading