diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 437a6b5..a4605b6 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -16,27 +16,28 @@ jobs: fail-fast: false matrix: config: - - { - name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z", - os: windows-latest, - cc: "cl", cxx: "cl", - environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" - } - - { - name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z", - os: windows-latest, - cc: "gcc", cxx: "g++" - } - - { - name: "Ubuntu Latest GCC", artifact: "Linux.7z", - os: ubuntu-latest, - cc: "gcc", cxx: "g++" - } - - { - name: "macOS Latest Clang", artifact: "macOS.7z", - os: macos-latest, - cc: "clang", cxx: "clang++" - } + - name: "Ubuntu Latest GCC" + artifact: "Linux.7z" + os: ubuntu-latest + cc: "gcc" + cxx: "g++" + +# - { +# name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z", +# os: windows-latest, +# cc: "cl", cxx: "cl", +# environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" +# } +# - { +# name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z", +# os: windows-latest, +# cc: "gcc", cxx: "g++" +# } +# - { +# name: "macOS Latest Clang", artifact: "macOS.7z", +# os: macos-latest, +# cc: "clang", cxx: "clang++" +# } steps: - uses: actions/checkout@v1