From 926913998dba23034d7236752442c4788aba6766 Mon Sep 17 00:00:00 2001 From: Won-Kyu Park Date: Thu, 1 Feb 2024 12:26:57 +0900 Subject: [PATCH] add windows build matrix --- .github/workflows/cmake.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index be3092daa..35d1b0240 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -15,15 +15,23 @@ jobs: fail-fast: false matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest] python-version: ['3.10', '3.11'] cuda-version: ['11.8', '12.1'] build_type: [Release] - c_compiler: [gcc] + c_compiler: [gcc, cl] include: + - os: windows-latest + c_compiler: cl + cpp_compiler: cl - os: ubuntu-latest c_compiler: gcc cpp_compiler: g++ + exclude: + - os: ubuntu-latest + c_compiler: cl + - os: windows-latest + c_compiler: gcc steps: - uses: actions/checkout@v4