This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 7e452b905 ORC-1923: Remove `Windows 2019` GitHub Action job
7e452b905 is described below
commit 7e452b9056bd984fd9a55a8e24dc32524d194128
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Jun 17 14:05:16 2025 -0700
ORC-1923: Remove `Windows 2019` GitHub Action job
### What changes were proposed in this pull request?
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
### Why are the changes needed?
`Windows 2019` is deprecated already and will be removed soon.
- https://github.com/actions/runner-images/issues/12045
### How was this patch tested?
Manual review because this is a removal of CI.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #2274 from dongjoon-hyun/ORC-1923.
Authored-by: Dongjoon Hyun <[email protected]>
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 bff7c41a8..6faaf7daf 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -113,37 +113,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@v4
- - 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 }}