Skip to content

Commit

Permalink
chore(scala): add scala build script (#1920)
Browse files Browse the repository at this point in the history
## What does this PR do?

add scala build script

## Related issues

<!--
Is there any related issue? Please attach here.

- #xxxx0
- #xxxx1
- #xxxx2
-->

## Does this PR introduce any user-facing change?

<!--
If any user-facing interface changes, please [open an
issue](https://github.com/apache/fury/issues/new/choose) describing the
need to do so and update the document if necessary.
-->

- [ ] Does this PR introduce any public API change?
- [ ] Does this PR introduce any binary protocol compatibility change?

## Benchmark

<!--
When the PR has an impact on performance (if you don't know whether the
PR will have an impact on performance, you can submit the PR first, and
if it will have impact on performance, the code reviewer will explain
it), be sure to attach a benchmark data here.
-->
  • Loading branch information
chaokunyang authored Nov 3, 2024
1 parent 3651add commit ed90bf5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ci/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,16 @@ install_pyarrow() {
pip install pyarrow==$pyarrow_version
}

deploy_scala() {
echo "Start to build jars"
sbt +publishSigned
echo "Start to prepare upload"
sbt sonatypePrepare
echo "Start to upload jars"
sbt sonatypeBundleUpload
echo "Deploy scala jars succeed!"
}

case "$1" in
java) # Deploy jars to maven repository.
deploy_jars
Expand Down

0 comments on commit ed90bf5

Please sign in to comment.