Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -226,3 +226,4 @@ sycl/test-e2e/ThreadSanitizer/ @intel/dpcpp-sanitizers-review

# ABI compatibility
devops/compat_ci_exclude.sycl-rel-** @gmlueck @xtian-github
sycl/test/abi/*sycl-rel*.dump @AlexeySachkov @KornevNikita
15 changes: 15 additions & 0 deletions .github/workflows/sycl-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ on:
permissions: read-all

jobs:
check_abi_symbols:
name: Check ABI symbols tests match release branch
runs-on: [Linux, build]
if: github.repository == 'intel/llvm'
container: ghcr.io/intel/llvm/ubuntu2404_build
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
sycl/test/abi
- run: |
git fetch --depth=1 origin sycl-rel-6_3
git diff --exit-code -I "^# RUN" origin/sycl-rel-6_3:sycl/test/abi/sycl_symbols_linux.dump sycl/test/abi/sycl_symbols_linux-sycl-rel-6_3.dump
git diff --exit-code -I "^# RUN" origin/sycl-rel-6_3:sycl/test/abi/sycl_symbols_windows.dump sycl/test/abi/sycl_symbols_windows-sycl-rel-6_3.dump

ubuntu2204_build:
if: github.repository == 'intel/llvm'
uses: ./.github/workflows/sycl-linux-build.yml
Expand Down
Loading
Loading