Skip to content

Commit 23ee025

Browse files
Merge branch 'branch-24.12' into regexp-line-terminator-optimization
2 parents 063f8e2 + 00fe174 commit 23ee025

File tree

176 files changed

+4346
-1366
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+4346
-1366
lines changed

.github/workflows/auto-merge.yml

+8-16
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,16 @@ name: auto-merge HEAD to BASE
1818
on:
1919
pull_request_target:
2020
branches:
21-
- branch-24.08
21+
- branch-*
2222
types: [closed]
2323

2424
jobs:
2525
auto-merge:
2626
if: github.event.pull_request.merged == true
27-
runs-on: ubuntu-latest
28-
29-
steps:
30-
- uses: actions/checkout@v4
31-
with:
32-
ref: branch-24.08 # force to fetch from latest upstream instead of PR ref
33-
34-
- name: auto-merge job
35-
uses: ./.github/workflows/auto-merge
36-
env:
37-
OWNER: NVIDIA
38-
REPO_NAME: spark-rapids
39-
HEAD: branch-24.08
40-
BASE: branch-24.10
41-
AUTOMERGE_TOKEN: ${{ secrets.AUTOMERGE_TOKEN }} # use to merge PR
27+
uses: NVIDIA/spark-rapids-common/.github/workflows/auto-merge.yml@main
28+
with:
29+
owner: ${{ github.repository_owner }}
30+
repo: spark-rapids
31+
branch: ${{ github.event.pull_request.base.ref }}
32+
secrets:
33+
token: ${{ secrets.AUTOMERGE_TOKEN }}

.github/workflows/auto-merge/Dockerfile

-22
This file was deleted.

.github/workflows/auto-merge/action.yml

-20
This file was deleted.

.github/workflows/auto-merge/automerge

-137
This file was deleted.

.github/workflows/mvn-verify-check.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -246,12 +246,10 @@ jobs:
246246
echo "Generated Scala 2.13 build files don't match what's in repository"
247247
exit 1
248248
fi
249-
# change to Scala 2.13 Directory
250-
cd scala2.13
251249
# test command, will retry for 3 times if failed.
252250
max_retry=3; delay=30; i=1
253251
while true; do
254-
mvn package \
252+
mvn package -f scala2.13/ \
255253
-pl integration_tests,tests,tools -am -P 'individual,pre-merge' \
256254
-Dbuildver=${{ matrix.spark-version }} -Dmaven.scalastyle.skip=true \
257255
-Drat.skip=true ${{ env.COMMON_MVN_FLAGS }} && break || {
@@ -303,12 +301,10 @@ jobs:
303301
echo "Generated Scala 2.13 build files don't match what's in repository"
304302
exit 1
305303
fi
306-
# change to Scala 2.13 Directory
307-
cd scala2.13
308304
# test command, will retry for 3 times if failed.
309305
max_retry=3; delay=30; i=1
310306
while true; do
311-
mvn verify \
307+
mvn verify -f scala2.13/ \
312308
-P "individual,pre-merge,source-javadoc" -Dbuildver=${{ matrix.spark-version }} \
313309
${{ env.COMMON_MVN_FLAGS }} && break || {
314310
if [[ $i -le $max_retry ]]; then

0 commit comments

Comments
 (0)