### Why are the changes needed? Fix Gluten CI ### How was this patch tested? https://github.com/wForget/kyuubi/actions/runs/12271186564 ### Was this patch authored or co-authored using generative AI tooling? No Closes #6848 from wForget/master. Closes #6848 e2e32776a [wforget] Revert "pr trigger" 848cbe3e9 [wforget] pr trigger fc83db671 [Zhen Wang] Update .github/workflows/gluten.yml 839b9f292 [wforget] clean 91f3e0d33 [wforget] fix test b9117e942 [wforget] fix test c4333305e [wforget] fix 8c3e48097 [wforget] fix e4af6fc3e [wforget] fix 0f4d2f540 [wforget] fix 100be1c2a [wforget] fix a7eacb910 [wforget] Fix Gluten CI Lead-authored-by: wforget <643348094@qq.com> Co-authored-by: Zhen Wang <643348094@qq.com> Signed-off-by: wforget <643348094@qq.com>
138 lines
5.2 KiB
YAML
138 lines
5.2 KiB
YAML
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
name: Gluten CI
|
|
|
|
on:
|
|
schedule:
|
|
- cron: 0 4 * * *
|
|
|
|
env:
|
|
MAVEN_ARGS: -Dmaven.javadoc.skip=true -Drat.skip=true -Dscalastyle.skip=true -Dspotless.check.skip -Dorg.slf4j.simpleLogger.defaultLogLevel=warn -Pjdbc-shaded,gen-policy -Dmaven.plugin.download.cache.path=/tmp/engine-archives
|
|
|
|
jobs:
|
|
gluten-build:
|
|
name: Build Gluten
|
|
if: ${{ startsWith(github.repository, 'apache/') }}
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Free up disk space
|
|
run: ./.github/scripts/free_disk_space.sh
|
|
- name: Tune Runner VM
|
|
uses: ./.github/actions/tune-runner-vm
|
|
- name: Setup JDK 8
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: 8
|
|
cache: 'maven'
|
|
- name: Setup Maven
|
|
uses: ./.github/actions/setup-maven
|
|
- name: Get gluten cache date
|
|
id: date
|
|
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
|
- name: Check gluten cache
|
|
id: gluten-cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: incubator-gluten/package/target/
|
|
key: gluten_package_${{ steps.date.outputs.date }}
|
|
- name: Get Ccache
|
|
id: gluten-ccache-cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: incubator-gluten/.ccache
|
|
key: ccache-centos7-release-default-${{github.sha}}
|
|
restore-keys: |
|
|
ccache-centos7-release-default
|
|
- name: Build Gluten velox third party
|
|
run: |
|
|
if [[ "${{ steps.gluten-cache.outputs.cache-hit }}" != 'true' ]]; then
|
|
git clone https://github.com/apache/incubator-gluten.git --depth=1
|
|
cd incubator-gluten
|
|
docker run -v $GITHUB_WORKSPACE/incubator-gluten:/work -w /work apache/gluten:vcpkg-centos-7 bash -c "
|
|
df -a
|
|
cd /work
|
|
export CCACHE_DIR=/work/.ccache
|
|
bash dev/ci-velox-buildstatic-centos-7.sh
|
|
ccache -s
|
|
mkdir -p /work/.m2/repository/org/apache/arrow/
|
|
cp -r /root/.m2/repository/org/apache/arrow/* /work/.m2/repository/org/apache/arrow/
|
|
"
|
|
mkdir -p ~/.m2/repository/org/apache/arrow
|
|
cp -r $GITHUB_WORKSPACE/incubator-gluten/.m2/repository/org/apache/arrow/* ~/.m2/repository/org/apache/arrow/
|
|
mvn clean package -Pbackends-velox -Pceleborn -Puniffle -Pspark-3.5 -DskipTests
|
|
fi
|
|
- uses: actions/cache@v4
|
|
if: steps.gluten-cache.outputs.cache-hit != 'true'
|
|
with:
|
|
path: incubator-gluten/package/target/
|
|
key: gluten_package_${{ steps.date.outputs.date }}
|
|
- name: Save Ccache
|
|
uses: actions/cache@v4
|
|
if: steps.gluten-ccache-cache.outputs.cache-hit != 'true'
|
|
with:
|
|
path: incubator-gluten/.ccache/
|
|
key: ccache-centos7-release-default-${{github.sha}}
|
|
|
|
gluten-it:
|
|
name: Gluten Integration TPC-H/DS Test
|
|
needs: gluten-build
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
spark: [ '3.5' ]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Free up disk space
|
|
run: ./.github/scripts/free_disk_space.sh
|
|
- name: Tune Runner VM
|
|
uses: ./.github/actions/tune-runner-vm
|
|
- name: Cache Engine Archives
|
|
uses: ./.github/actions/cache-engine-archives
|
|
- name: Get gluten cache date
|
|
id: date
|
|
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
|
- name: Check gluten cache
|
|
id: gluten-cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: incubator-gluten/package/target/
|
|
key: gluten_package_${{ steps.date.outputs.date }}
|
|
- name: Setup JDK 8
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: 8
|
|
cache: 'maven'
|
|
- name: Setup Maven
|
|
uses: ./.github/actions/setup-maven
|
|
- name: Run Gluten Integration TPC-H/DS Test
|
|
run: |
|
|
TEST_MODULES="integration-tests/kyuubi-gluten-it"
|
|
./build/mvn -Pgluten-it -Pspark-${{ matrix.spark }} -pl ${TEST_MODULES} -am clean install -DskipTests
|
|
./build/mvn -Pgluten-it -Pspark-${{ matrix.spark }} -pl ${TEST_MODULES} test
|
|
- name: Upload test logs
|
|
if: failure()
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: unit-tests-log-spark-${{ matrix.spark }}-gluten
|
|
path: |
|
|
**/target/unit-tests.log
|