- 
                Notifications
    You must be signed in to change notification settings 
- Fork 794
[CI][Benchmarks] do not build and run E2E test on benchmark only changes #20414
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
Changes from all commits
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 | 
|---|---|---|
|  | @@ -59,13 +59,16 @@ jobs: | |
| changes: ${{ needs.detect_changes.outputs.filters }} | ||
|  | ||
| toolchain_artifact: sycl_linux_default | ||
| e2e_binaries_artifact: e2e_bin | ||
| e2e_binaries_preview_artifact: e2e_bin_preview | ||
| e2e_binaries_artifact: ${{ contains(needs.detect_changes.outputs.filters, 'nonbench') && 'e2e_bin' || '' }} | ||
| 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 don't really like the  fyi @intel/dpcpp-devops-reviewers 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. This is a change made to be as short as possible, to ease your review of its correctness and have CI working faster right now. @lukaszstolarczuk is refactoring benchmarking CI in #20439 There is a separate workflow there so this change (if we go with this patch before #20439) will be reverted. 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. If your team will commit to addressing my/Andrei's feedback in that PR I'm fine to merge this given it seems important to your team. 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. 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 would want to see if @aelovikov-intel is okay with this as well before merging 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. Ok. I'm also OK with closing this PR without merging if we are able to review @lukaszstolarczuk change soon. @aelovikov-intel, please decide. 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. We don't touch detect_files workflow frequently enough to be confident that  | ||
| e2e_binaries_preview_artifact: ${{ contains(needs.detect_changes.outputs.filters, 'nonbench') && 'e2e_bin_preview' || '' }} | ||
|  | ||
| # Build and run native cpu e2e tests separately as cannot currently | ||
| # build all the e2e tests | ||
| build_run_native_cpu_e2e_tests: | ||
| if: ${{ always() && !cancelled() && needs.build.outputs.build_conclusion == 'success' }} | ||
| if: | | ||
| always() && !cancelled() | ||
| && needs.build.outputs.build_conclusion == 'success' | ||
| && contains(needs.detect_changes.outputs.filters, 'nonbench') | ||
| runs-on: [Linux, build] | ||
| needs: [build] | ||
| container: | ||
|  | @@ -138,7 +141,10 @@ jobs: | |
|  | ||
| E2E: | ||
| needs: [build, detect_changes, compat_read_exclude] | ||
| if: ${{ always() && !cancelled() && needs.build.outputs.build_conclusion == 'success' }} | ||
| if: | | ||
| always() && !cancelled() | ||
| && needs.build.outputs.build_conclusion == 'success' | ||
| && contains(needs.detect_changes.outputs.filters, 'nonbench') | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
|  | ||
Uh oh!
There was an error while loading. Please reload this page.