From 96921c4efacb807bdb227a8a8b3d6ae90b963fba Mon Sep 17 00:00:00 2001 From: OSAMU WATANABE Date: Thu, 13 Jun 2024 18:39:19 +0900 Subject: [PATCH] Put windows-latest back --- .github/workflows/cmake.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 6768042..cbceb05 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -24,14 +24,14 @@ jobs: # # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. matrix: - #os: [ubuntu-latest, windows-latest, macos-latest] - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-latest] +# os: [ubuntu-latest, macos-latest] build_type: [Release] c_compiler: [gcc, clang, cl] include: - # - os: windows-latest - # c_compiler: cl - # cpp_compiler: cl + - os: windows-latest + c_compiler: cl + cpp_compiler: cl - os: ubuntu-latest c_compiler: gcc cpp_compiler: g++ @@ -42,10 +42,10 @@ jobs: c_compiler: clang cpp_compiler: clang++ exclude: - # - os: windows-latest - # c_compiler: gcc - # - os: windows-latest - # c_compiler: clang + - os: windows-latest + c_compiler: gcc + - os: windows-latest + c_compiler: clang - os: ubuntu-latest c_compiler: cl - os: macos-latest