Skip to content

Add tests with template function initialized as incomplete types #17

Add tests with template function initialized as incomplete types

Add tests with template function initialized as incomplete types #17

# Copyright 2024-2025 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
name: Rebuild LLVM 18.1
permissions: read-all
on:
push:
branches:
- main
- '**rebuild_llvm**'
paths:
- "llvm_patches/*18_1*"
- "scripts/alloy.py"
- "superbuild/*"
- ".github/workflows/rebuild-llvm18.yml"
- ".github/workflows/reusable.rebuild.yml"
workflow_dispatch:
jobs:
llvm18:
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: '18.1'
full_version: '18.1.8'
lto: ${{ matrix.lto }}
asserts: ${{ matrix.asserts }}
arch: ${{ matrix.arch }}
ubuntu: '22.04'
win_sdk: '10.0.18362.0'