This is an automated email from the ASF dual-hosted git repository.

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fury.git


The following commit(s) were added to refs/heads/main by this push:
     new ed90bf59 chore(scala): add scala build script (#1920)
ed90bf59 is described below

commit ed90bf595ef91acbaf2c87cc1a756220de551d98
Author: Shawn Yang <[email protected]>
AuthorDate: Sun Nov 3 23:30:51 2024 +0800

    chore(scala): add scala build script (#1920)
    
    ## 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.
    -->
---
 ci/deploy.sh | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/ci/deploy.sh b/ci/deploy.sh
index 7021e581..e514848c 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to