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 01baa484f ORC-2096: Remove `doc` dependency from `build` GitHub
Actions job
01baa484f is described below
commit 01baa484f0ae29a68d10425869782916160e4e01
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Feb 18 15:17:59 2026 -0800
ORC-2096: Remove `doc` dependency from `build` GitHub Actions job
### What changes were proposed in this pull request?
This PR aims to remove `doc` dependency from `build` GitHub Actions job.
### Why are the changes needed?
The Javadoc generation step fails during Apache Hadoop 3.4.3 RC1 testing
because RC1 doesn't have a publish doc.
- https://github.com/apache/orc/pull/2503
Since we need to run `build` GitHub Actions job step to validate new Hadoop
RCs, we need to remove this dependency.
### How was this patch tested?
Pass the CIs and check the build dependency.
<img width="1177" height="619" alt="Screenshot 2026-02-18 at 15 10 47"
src="https://github.com/user-attachments/assets/c339d390-9f1b-4405-b6fc-bb8ad5a4c06b"
/>
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: `Gemini 3 Pro (High)` on `Antigravity`
Closes #2535 from dongjoon-hyun/ORC-2096.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 96d030bee..77970e1b9 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -64,7 +64,7 @@ jobs:
build:
name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}"
- needs: [license-check, doc]
+ needs: [license-check]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false