From b50c287ac3767817b409d59f6f3a99297e3bd776 Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Mon, 4 Mar 2024 19:28:15 +0800 Subject: [PATCH] Update core-build.yml --- .github/workflows/core-build.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/core-build.yml b/.github/workflows/core-build.yml index c7d18e25..716bedac 100644 --- a/.github/workflows/core-build.yml +++ b/.github/workflows/core-build.yml @@ -25,11 +25,24 @@ jobs: matrix: os: [ubuntu-latest] build_type: [Release] - c_compiler: [clang] + c_compiler: [gcc, clang, cl] include: + # - os: windows-latest + # c_compiler: cl + # cpp_compiler: cl + - os: ubuntu-latest + c_compiler: gcc + cpp_compiler: g++ - os: ubuntu-latest c_compiler: clang cpp_compiler: clang++ + exclude: + # - os: windows-latest + # c_compiler: gcc + # - os: windows-latest + # c_compiler: clang + - os: ubuntu-latest + c_compiler: cl steps: - name: Checkout AzerothCore