Skip to content

Commit adb686a

Browse files
committed
ORC-2101: Enable GitHub Action CI in branch-2.3
### What changes were proposed in this pull request? This PR aims to enable GitHub Action CI in `branch-2.3`. ### Why are the changes needed? Since `branch-2.3` is newly created, we need to enable CIs. - https://github.com/apache/orc/tree/branch-2.3 ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? Generated-by: `Gemini 3.1 Pro (High)` on `Antigravity` Closes #2543 from dongjoon-hyun/ORC-2101. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent 912f7c1 commit adb686a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build_and_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ on:
2323
- 'site/**'
2424
- 'conan/**'
2525
branches:
26-
- main
26+
- branch-2.3
2727
pull_request:
2828
paths-ignore:
2929
- 'site/**'
3030
- 'conan/**'
3131
branches:
32-
- main
32+
- branch-2.3
3333
workflow_call:
3434

3535
# Cancel previous PR build and test
@@ -60,7 +60,7 @@ jobs:
6060
- name: "Test"
6161
run: |
6262
cd docker
63-
./run-one.sh local main ${{ matrix.os }}
63+
./run-one.sh local branch-2.3 ${{ matrix.os }}
6464
6565
build:
6666
name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}"

.github/workflows/publish_snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish Snapshot
33
on:
44
push:
55
branches:
6-
- main
6+
- branch-2.3
77

88
jobs:
99
publish-snapshot:

.github/workflows/sanitizer_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
- 'site/**'
2424
- 'conan/**'
2525
branches:
26-
- main
26+
- branch-2.3
2727

2828
concurrency:
2929
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.number || github.sha }}

0 commit comments

Comments
 (0)