Skip to content

DRAFT: first

DRAFT: first #416

# Calling workflow for running planned style tests
name: Run planned testing
on:
# Note: use pull_request: for localized testing only
pull_request:
paths:
- '.github/workflows/planned_testing.yml'
- '.github/workflows/planned_testing_caller.yml'
branches:
- main
schedule:
# Run Mon-Fri at 7pm
- cron: '00 19 * * 1-5'
jobs:
call_planned:
# This makes the diagram too big if we post much here so S_ for scheduled.
name: S_
if: github.repository == 'uxlfoundation/oneapi-construction-kit' || github.event_name != 'schedule'
uses: ./.github/workflows/planned_testing.yml
with:
target_list: '["host_aarch64_linux"]'
test_opencl_cts: true
# Have a pull request setting which can be used to test the flow as best as possible
# in a reasonable time
pull_request: ${{ github.event_name == 'pull_request' }}