Skip to content

Add tests with template function initialized as incomplete types #24

Add tests with template function initialized as incomplete types

Add tests with template function initialized as incomplete types #24

# Copyright 2023-2025 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
name: Rebuild LLVM 17.0
permissions: read-all
on:
push:
branches:
- main
- '**rebuild_llvm**'
paths:
- "llvm_patches/*17_0*"
- "scripts/alloy.py"
- "superbuild/*"
- ".github/workflows/rebuild-llvm17.yml"
- ".github/workflows/reusable.rebuild.yml"
workflow_dispatch:
jobs:
llvm17:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.lto }}-${{ matrix.asserts }}-${{ matrix.arch }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
lto: ['ON', 'OFF']
asserts: ['ON', 'OFF']
arch: ['x86', 'aarch64']
uses: ./.github/workflows/reusable.rebuild.yml
with:
version: '17.0'
full_version: '17.0.6'
lto: ${{ matrix.lto }}
asserts: ${{ matrix.asserts }}
arch: ${{ matrix.arch }}
ubuntu: '22.04'
win_sdk: '10.0.18362.0'