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 0a02e4cde ORC-1619: Add `MacOS 14` to GitHub Action
0a02e4cde is described below
commit 0a02e4cde165b81fb93fc99456a130da4625ef30
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]>
---
.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 af61de7d4..114fadc79 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -49,6 +49,7 @@ jobs:
- ubuntu-22.04
- macos-12
- macos-13
+ - macos-14
java:
- 17
- 21