[NFC] Remove leftover RISC-V SYCL bits. #214
Workflow file for this run
This file contains hidden or 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 Sun, Wed at 7pm | |
- cron: '0 19 * * 0,3' | |
workflow_dispatch: | |
inputs: | |
dpcpp_repo_pr_no: | |
description: 'dpc++ repo ref: enter PR number (else default branch is used)' | |
type: string | |
default: "" | |
permissions: | |
packages: read | |
# To add another llvm planned testing, simply copy this file and set the llvm_version and llvm_branch variables | |
# llvm_version is only used for tagging purposes, although ideally would be a number or main | |
# We may want to delete the lowest version for planned_testing_caller_*.yml at that time. | |
# If it is known to be unchanging, then set the 'use_llvm_github_cache: true' as an input to planned_testing_caller.yml/ | |
# Note this will not affect normal PR runs which will require run_pr_tests_caller.yml to be updated. | |
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_ is used. | |
L20_: | |
if: github.repository == 'uxlfoundation/oneapi-construction-kit' || github.event_name == 'workflow_dispatch' | |
uses: ./.github/workflows/planned_testing_caller.yml | |
with: | |
llvm_version: '20' | |
llvm_branch: 'release/20.x' | |
use_llvm_github_cache: true | |
save_cache: ${{ github.event_name == 'schedule' }} | |
dpcpp_repo_pr_no: ${{ inputs.dpcpp_repo_pr_no }} | |
# 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). | |
# This cleans up any caches which may have been created when running external tests | |
clean_caches: | |
needs: [ L20_ ] | |
if: ( github.repository == 'uxlfoundation/oneapi-construction-kit' && github.event_name != 'pull_request' || github.event_name == 'workflow_dispatch' ) && always() | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write # for gh cache delete | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v5 | |
with: | |
sparse-checkout: .github | |
- name: Cache clean | |
uses: ./.github/actions/clean_cache | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
cache_prefixes: "ccache-ccache-dpcpp-build-host_x86_64_linux ccache-ccache-dpcpp-build-host_aarch64_linux" |