-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
evaluate-default-paths.yml: Add paths for wasi #81817
Changes from 4 commits
a9f9bfd
5c3f1cc
7bd5157
1167328
4d686f1
eebd001
e3275cf
e787ad4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ parameters: | |
isWasmOnlyBuild: false | ||
browser: 'chrome' | ||
shouldContinueOnError: false | ||
runOnlyOnWasmPipelines: false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm confused as to why this would want to run on non-wasm pipelines. Are the wasm debugger tests not a wasm pipeline? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it should really be named There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, it should run only on runtime-wasm* pipelines which have only wasm builds, and are run manually. |
||
extraBuildArgs: '' | ||
nameSuffix: '' | ||
platforms: [] | ||
|
@@ -23,6 +24,8 @@ jobs: | |
# map dependencies variables to local variables | ||
- name: alwaysRunVar | ||
value: ${{ parameters.alwaysRun }} | ||
- name: runOnlyOnWasmPipelinesVar | ||
value: ${{ parameters.runOnlyOnWasmPipelines }} | ||
- name: shouldRunOnDefaultPipelines | ||
value: $[ | ||
or( | ||
|
@@ -47,7 +50,9 @@ jobs: | |
condition: >- | ||
or( | ||
eq(variables['alwaysRunVar'], true), | ||
eq(variables['isDefaultPipeline'], variables['shouldRunOnDefaultPipelines'])) | ||
and( | ||
eq(variables['isDefaultPipeline'], variables['shouldRunOnDefaultPipelines']), | ||
ne(variables['runOnlyOnWasmPipelinesVar']), 'true')) | ||
extraStepsTemplate: /eng/pipelines/libraries/helix.yml | ||
extraStepsParameters: | ||
creator: dotnet-bot | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(m|i)
instead of*
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or use
?
to be clear that it's one characterThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
with the caveat that i don't know what kind of glob/regex syntax is being used here :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed. these are used with
git diff
, and followgit pathspec
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmph azdo didn't like
?
:/eng/pipelines/common/evaluate-default-paths.yml (Line: 10, Col: 24): While parsing a flow sequence, did not find expected ',' or ']'.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Took the easy way out with
WasmRunner*
, andWasiRunner
.