You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2022/11/29 06:10:49 UTC

[orc] branch branch-1.8 updated: Revert "ORC-1302: Upgrade Github workflow to use `Visual Studio 16 2019` on Windows"

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-1.8
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.8 by this push:
     new 36c54888b Revert "ORC-1302: Upgrade Github workflow to use `Visual Studio 16 2019` on Windows"
36c54888b is described below

commit 36c54888b6e0cab02ecdc6960ee6b189d921ee05
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Mon Nov 28 22:10:33 2022 -0800

    Revert "ORC-1302: Upgrade Github workflow to use `Visual Studio 16 2019` on Windows"
    
    This reverts commit 7f99a7aa10695855a44cfb0b78f21d61a59c20c6.
---
 .github/workflows/build_and_test.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index 7ebba06d4..57f99a96d 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -80,13 +80,11 @@ jobs:
       uses: actions/checkout@v2
     - name: Add msbuild to PATH
       uses: microsoft/setup-msbuild@v1.1
-      with:
-        msbuild-architecture: x64
     - name: "Test"
       run: |
         mkdir build
         cd build
-        cmake .. -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=Debug -DBUILD_LIBHDFSPP=OFF -DBUILD_TOOLS=OFF -DBUILD_JAVA=OFF
+        cmake .. -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug -DBUILD_LIBHDFSPP=OFF -DBUILD_TOOLS=OFF -DBUILD_JAVA=OFF
         cmake --build . --config Debug
         ctest -C Debug --output-on-failure