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 1c9d91efb ORC-1619: Add `MacOS 14` to GitHub Action
1c9d91efb is described below
commit 1c9d91efbc8141c303ac3b95b3dd2d7eb8152239
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Feb 14 16:45:28 2024 -0800
ORC-1619: Add `MacOS 14` to GitHub Action
### What changes were proposed in this pull request?
This PR aims to add `MacOS 14` to GitHub Action.
### Why are the changes needed?
As of now, the latest MacOS is `14.3.1`.
```
$ sw_vers
ProductName: macOS
ProductVersion: 14.3.1
BuildVersion: 23D60
```
```
$ g++ --version
Apple clang version 15.0.0 (clang-1500.1.0.2.5)
```
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #1800 from dongjoon-hyun/macos14.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit 0a02e4cde165b81fb93fc99456a130da4625ef30)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 8aa2c1287..c0d4a3e62 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -50,6 +50,7 @@ jobs:
- ubuntu-22.04
- macos-12
- macos-13
+ - macos-14
java:
- 8
- 11