Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/sycl-detect-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions: read-all
jobs:
need_check:
name: Decide which tests could be affected by the changes
runs-on: [Linux, aux-tasks]
runs-on: ubuntu-latest
timeout-minutes: 3
outputs:
filters: ${{ steps.result.outputs.result }}
Expand All @@ -28,7 +28,7 @@ jobs:

- name: Check file changes
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
if: ${{ steps.changed_files.outputs.changed_file_cnt }} < 500
if: ${{ steps.changed_files.outputs.changed_file_cnt < 500 }}
id: changes
with:
filters: |
Expand Down Expand Up @@ -98,4 +98,3 @@ jobs:
return ["llvm", "llvm_spirv", "clang", "sycl_jit", "xptifw", "libclc", "sycl", "ci", "esimd", "ur"];

- run: echo '${{ steps.result.outputs.result }}'

19 changes: 0 additions & 19 deletions .github/workflows/sycl-linux-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,6 @@ on:
# "Require approval for all outside collaborators" at
# https://github.com/intel/llvm/settings/actions for security.
pull_request:
branches:
- sycl
- sycl-rel-**
# Do not run builds if changes are only in the following locations
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/CODEOWNERS'
- 'sycl/cts_exclude_filter/**'
- 'sycl/doc/**'
- 'sycl/gdb/**'
- 'clang/docs/**'
- '**.md'
- '**.rst'
- '.github/workflows/sycl-windows-*.yml'
- '.github/workflows/sycl-macos-*.yml'
- '.github/workflows/sycl-nightly.yml'
- '.github/workflows/sycl-rel-nightly.yml'
- 'devops/containers/**'
- 'devops/actions/build_container/**'

concurrency:
# Cancel a currently running workflow from the same PR, branch or tag.
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/lit.cfg.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- Python -*-

import os
import os
import platform
import copy
import re
Expand Down
Loading