forked from pflooky/data-caterer-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Put quotes around curl url, clone datausion-comet from github action
- Loading branch information
Showing
2 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,19 @@ | |
|
||
spark_major_version=$(grep sparkMajorVersion gradle.properties | cut -d= -f2) | ||
|
||
mkdir benchmark/jars | ||
mkdir -p benchmark/jars | ||
|
||
echo "Downloading query engine jars with Spark version: ${spark_major_version}" | ||
echo "Getting blaze jar..." | ||
curl --output benchmark/jars/blaze.jar https://github.com/kwai/blaze/releases/download/v2.0.9.1/blaze-engine-spark333-release-2.0.9.1-SNAPSHOT.jar | ||
curl -L -o benchmark/jars/blaze.jar "https://github.com/kwai/blaze/releases/download/v2.0.9.1/blaze-engine-spark333-release-2.0.9.1-SNAPSHOT.jar" | ||
echo "Finished downloading blaze jar" | ||
|
||
echo "Getting gluten jar..." | ||
curl --output benchmark/jars/gluten.jar https://github.com/apache/incubator-gluten/releases/download/v1.1.1/gluten-velox-bundle-spark3.4_2.12-1.1.1.jar | ||
curl -L -o benchmark/jars/gluten.jar "https://github.com/apache/incubator-gluten/releases/download/v1.1.1/gluten-velox-bundle-spark3.4_2.12-1.1.1.jar" | ||
echo "Finished downloading gluten jar" | ||
|
||
echo "Building datafusion-comet..." | ||
git clone [email protected]:apache/datafusion-comet.git benchmark/build | ||
#git clone [email protected]:apache/datafusion-comet.git benchmark/build | ||
cd benchmark/build/datafusion-comet | ||
make release PROFILES="-Pspark-${spark_major_version}" | ||
ls spark/target/comet-spark-*-SNAPSHOT.jar | ||
|