Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/gluten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,22 +50,22 @@ jobs:
id: gluten-cache
uses: actions/cache@v4
with:
path: incubator-gluten/package/target/
path: 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
path: 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 "
git clone https://github.com/apache/gluten.git --depth=1
cd gluten
docker run -v $GITHUB_WORKSPACE/gluten:/work -w /work apache/gluten:vcpkg-centos-7 bash -c "
df -a
cd /work
export CCACHE_DIR=/work/.ccache
Expand All @@ -75,19 +75,19 @@ jobs:
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/
cp -r $GITHUB_WORKSPACE/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/
path: 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/
path: gluten/.ccache/
key: ccache-centos7-release-default-${{github.sha}}

gluten-it:
Expand All @@ -113,7 +113,7 @@ jobs:
id: gluten-cache
uses: actions/cache@v4
with:
path: incubator-gluten/package/target/
path: gluten/package/target/
key: gluten_package_${{ steps.date.outputs.date }}
- name: Setup JDK 8
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/kyuubi-gluten-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<artifactId>${gluten.artifact.name}</artifactId>
<version>${gluten.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/../../incubator-gluten/package/target/${gluten.artifact.name}-${gluten.version}.jar</systemPath>
<systemPath>${project.basedir}/../../gluten/package/target/${gluten.artifact.name}-${gluten.version}.jar</systemPath>
</dependency>

<dependency>
Expand Down
Loading