Skip to content

Commit

Permalink
[Enhancement] update staros components to 3.2-rc1 (StarRocks#30959)
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Xiaohua Cai <caixiaohua@starrocks.com>
  • Loading branch information
kevincai authored Sep 14, 2023
1 parent 8af8eb9 commit 7c296ec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion be/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ set_target_properties(parquet PROPERTIES IMPORTED_LOCATION ${THIRDPARTY_DIR}/lib
add_library(brpc STATIC IMPORTED GLOBAL)
set_target_properties(brpc PROPERTIES IMPORTED_LOCATION ${THIRDPARTY_DIR}/lib64/libbrpc.a)

add_library(rocksdb STATIC IMPORTED)
add_library(rocksdb STATIC IMPORTED GLOBAL)
set_target_properties(rocksdb PROPERTIES IMPORTED_LOCATION ${THIRDPARTY_DIR}/lib/librocksdb.a)

add_library(sasl STATIC IMPORTED GLOBAL)
Expand Down Expand Up @@ -430,6 +430,7 @@ if ("${USE_STAROS}" STREQUAL "ON")
add_library(brpc::brpc ALIAS brpc)
add_library(leveldb::leveldb ALIAS leveldb)
add_library(CURL::libcurl ALIAS curl)
add_library(rocksdb::rocksdb ALIAS rocksdb)

set(absl_DIR "${STARLET_INSTALL_DIR}/third_party/lib/cmake/absl" CACHE PATH "absl search path" FORCE)
find_package(absl CONFIG REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion docker/dockerfiles/dev-env/dev-env.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG predownload_thirdparty=false
ARG thirdparty_url=https://cdn-thirdparty.starrocks.com/starrocks-thirdparty-main-20230720.tar
ARG commit_id
# check thirdparty/starlet-artifacts-version.sh, to get the right tag
ARG starlet_tag=v3.1-rc8
ARG starlet_tag=v3.2-rc1
# build for which linux distro: centos7|ubuntu
ARG distro=ubuntu

Expand Down
4 changes: 2 additions & 2 deletions fe/fe-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -729,12 +729,12 @@ under the License.
<dependency>
<groupId>com.starrocks</groupId>
<artifactId>starclient</artifactId>
<version>3.1-rc8</version>
<version>3.2-rc1</version>
</dependency>
<dependency>
<groupId>com.starrocks</groupId>
<artifactId>starmanager</artifactId>
<version>3.1-rc8</version>
<version>3.2-rc1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/io.opentelemetry/opentelemetry-api -->
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/starlet-artifacts-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
# https://hub.docker.com/r/starrocks/starlet-artifacts-centos7/tags
#
# Update the following tag when STARLET releases a new version.
export STARLET_ARTIFACTS_TAG=v3.1-rc8
export STARLET_ARTIFACTS_TAG=v3.2-rc1

0 comments on commit 7c296ec

Please sign in to comment.