Add a workflow to create llvm artefacts for a branch #47
Workflow file for this run
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
name: run planned tests for llvm 20 | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/planned_testing_caller_20.yml' | |
schedule: | |
# Run Mon, Wed, Fri at 7pm | |
- cron: '0 19 * * 1,3,5' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# This makes the diagram too big if we post much here so L20_ for scheduled. | |
L20_: | |
if: github.repository == 'uxlfoundation/oneapi-construction-kit' || github.event_name != 'schedule' | |
uses: ./.github/workflows/planned_testing_caller.yml | |
with: | |
llvm_version: '20' | |
llvm_branch: 'release/20.x' | |
# We can set ock, test_sycl_cts etc here optionally if this is used as a | |
# pull request. Any parameters below this is intended for local testing | |
# and should not be merged nor reviewed (other than checking it should not be merged). | |
fast_arm_ubuntu_22_runner: 'ubuntu-22.04-arm' | |
fast_x86_64_ubuntu_22_runner: 'ubuntu-22.04' | |
fast_x86_64_ubuntu_24_runner: 'ubuntu-24.04' | |
ock: true | |
test_tornado: false | |
test_sycl_cts: true | |
test_opencl_cts: true | |
run_internal: true | |
run_external: true | |
use_llvm_github_cache: true | |
target_list: '["host_x86_64_linux"]' | |
# target_list: '["host_x86_64_linux", "host_x86_64_windows"]' | |
#', "host_x86_64_windows"]' | |
# use_llvm_github_cache: true |