forked from uxlfoundation/oneapi-construction-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demonstrate callable workflow methodology
- Loading branch information
Showing
4 changed files
with
115 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Calling workflow for running PR style tests | ||
name: Run ock tests for PR style testing | ||
on: | ||
pull_request: | ||
paths: | ||
- 'source/**' | ||
- 'clik/**' | ||
- 'modules/**' | ||
- 'examples/**' | ||
- 'cmake/**' | ||
- 'hal/**' | ||
- '.github/actions/do_build_ock/**' | ||
- '.github/actions/setup_ubuntu_build/**' | ||
- '.github/workflows/run_pr_tests.yml' | ||
- 'CMakeLists.txt' | ||
|
||
jobs: | ||
run-with-pull: | ||
name: Call PR testing on pull request | ||
if: ${{ github.event_name == 'pull_request' }} | ||
uses: ./.github/workflows/run_pr_tests.yml | ||
with: | ||
llvm_latest: 18 | ||
llvm_previous: 17 | ||
update_cache: false | ||
|
||
# additional ones here for cron and/or push to main - also can be in different file. |