Fix LLVM 23 API compatibility for getInlineParams #447
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
| # Copyright 2025-2026, Intel Corporation | |
| # SPDX-License-Identifier: BSD-3-Clause | |
| name: Build Windows cross-compile | |
| permissions: read-all | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '*.md' | |
| - 'snap/**' | |
| - 'benchmarks/**' | |
| - 'tests/**' | |
| - 'examples/**' | |
| - 'tools/**' | |
| - 'utils/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-ispc-linux-wincross: | |
| name: Build ISPC Linux wincross | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| submodules: true | |
| - name: Install ISPC build dependencies | |
| run: .github/workflows/scripts/install-build-deps.sh | |
| - name: Install xwin for windows sdk and vctools | |
| run: .github/workflows/scripts/install-xwin-winsdk-vctools.sh | |
| - name: Build ISPC wincross | |
| run: .github/workflows/scripts/build-ispc-wincross.sh | |
| - name: Upload ISPC artifact | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 | |
| with: | |
| name: build-ispc-linux-wincross | |
| path: build/ispc-*-linux-wincross.tar.gz | |
| - name: Sanity testing (make check-all, make test) | |
| run: .github/workflows/scripts/check-ispc.sh | |
| build-ispc-macos-wincross: | |
| name: Build ISPC macOS wincross | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| submodules: true | |
| - name: Install ISPC build dependencies | |
| run: .github/workflows/scripts/install-build-deps.sh macos-14 | |
| - name: Install xwin for windows sdk and vctools | |
| run: .github/workflows/scripts/install-xwin-winsdk-vctools.sh | |
| - name: Build ISPC wincross | |
| run: .github/workflows/scripts/build-ispc-wincross.sh | |
| - name: Upload ISPC artifact | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 | |
| with: | |
| name: build-ispc-macos-wincross | |
| path: build/ispc-*-macos-wincross.tar.gz | |
| - name: Sanity testing (make check-all, make test) | |
| run: .github/workflows/scripts/check-ispc.sh |