From 079d41a25e7ba05d9c308ecdbf0eb755b75b2c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kriszti=C3=A1n=20Sz=C5=B1cs?= Date: Sat, 28 Sep 2019 14:57:21 +0200 Subject: [PATCH] enable msvc [skip ci] --- .github/workflows/windows-msvc-cpp.yml | 70 +++++++++++++------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/.github/workflows/windows-msvc-cpp.yml b/.github/workflows/windows-msvc-cpp.yml index 9156dabf0b70b..c77b7a737132e 100644 --- a/.github/workflows/windows-msvc-cpp.yml +++ b/.github/workflows/windows-msvc-cpp.yml @@ -15,38 +15,38 @@ # specific language governing permissions and limitations # under the License. -# name: Windows MSVC C++ -# on: -# - push -# - pull_request -# jobs: -# build: -# name: Build -# strategy: -# matrix: -# cmake-generator: -# - Visual Studio 16 2019 -# - Visual Studio 15 2017 -# include: -# - cmake-generator: Visual Studio 16 2019 -# os: windows-2019 -# - cmake-generator: Visual Studio 15 2017 -# os: windows-2016 -# runs-on: ${{ matrix.os }} -# steps: -# - uses: actions/checkout@master -# - name: CMake -# run: | -# mkdir build\cpp -# cmake ^ -# -G "${{ matrix.cmake-generator }}" ^ -# -A x64 ^ -# -DARROW_USE_GLOG=OFF ^ -# -DARROW_WITH_LZ4=OFF ^ -# -DARROW_WITH_ZLIB=OFF ^ -# -DCMAKE_INSTALL_PREFIX=install ^ -# -S cpp ^ -# -B build\cpp -# - name: Install -# run: | -# cmake --build build\cpp --config Debug --target Install +name: Windows MSVC C++ +on: + - push + - pull_request +jobs: + build: + name: Build + strategy: + matrix: + cmake-generator: + - Visual Studio 16 2019 + - Visual Studio 15 2017 + include: + - cmake-generator: Visual Studio 16 2019 + os: windows-2019 + - cmake-generator: Visual Studio 15 2017 + os: windows-2016 + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@master + - name: CMake + run: | + mkdir build\cpp + cmake ^ + -G "${{ matrix.cmake-generator }}" ^ + -A x64 ^ + -DARROW_USE_GLOG=OFF ^ + -DARROW_WITH_LZ4=OFF ^ + -DARROW_WITH_ZLIB=OFF ^ + -DCMAKE_INSTALL_PREFIX=install ^ + -S cpp ^ + -B build\cpp + - name: Install + run: | + cmake --build build\cpp --config Debug --target Install