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

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


The following commit(s) were added to refs/heads/branch-1.9 by this push:
     new 17a361306 ORC-1923: Remove `Windows 2019` GitHub Action job
17a361306 is described below

commit 17a361306ec028ebb9606e792bbd17f3051cb73c
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Jun 17 14:05:16 2025 -0700

    ORC-1923: Remove `Windows 2019` GitHub Action job
    
    This PR aims to remove `Windows 2019` GitHub Action job.
    
    Note that ORC-1924 is created in order to recover Windows test coverage 
later.
    - #2273
    
    `Windows 2019` is deprecated already and will be removed soon.
    - https://github.com/actions/runner-images/issues/12045
    
    Manual review because this is a removal of CI.
    
    No.
    
    Closes #2274 from dongjoon-hyun/ORC-1923.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
    (cherry picked from commit 7e452b9056bd984fd9a55a8e24dc32524d194128)
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 .github/workflows/build_and_test.yml | 31 -------------------------------
 1 file changed, 31 deletions(-)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index acaa1abeb..83eea66db 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -86,37 +86,6 @@ jobs:
       run: |
         cat /home/runner/work/orc/orc/build/java/rat.txt
 
-  windows:
-    name: "C++ ${{ matrix.simd }} Test on Windows"
-    runs-on: windows-2019
-    strategy:
-      fail-fast: false
-      matrix:
-        simd:
-          - General
-          - AVX512
-    env:
-      ORC_USER_SIMD_LEVEL: AVX512
-    steps:
-    - name: Checkout
-      uses: actions/checkout@v2
-    - name: Add msbuild to PATH
-      uses: microsoft/[email protected]
-      with:
-        msbuild-architecture: x64
-    - name: "Test"
-      shell: bash
-      run: |
-        mkdir build
-        cd build
-        if [ "${{ matrix.simd }}" = "General" ]; then
-          cmake .. -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=Debug 
-DBUILD_LIBHDFSPP=OFF -DBUILD_TOOLS=OFF -DBUILD_JAVA=OFF
-        else
-          cmake .. -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=Debug 
-DBUILD_LIBHDFSPP=OFF -DBUILD_TOOLS=OFF -DBUILD_JAVA=OFF 
-DBUILD_ENABLE_AVX512=ON
-        fi
-        cmake --build . --config Debug
-        ctest -C Debug --output-on-failure
-
   simdUbuntu:
     name: "SIMD programming using C++ intrinsic functions on ${{ matrix.os }}"
     runs-on: ${{ matrix.os }}

Reply via email to