File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ There are two ways to install RisingWave: use a pre-built package or compile fro
24
24
25
25
``` shell
26
26
# Download the pre-built binary
27
- wget https://github.com/risingwavelabs/risingwave/releases/download/v0.1.16 /risingwave-v0.1.16 -x86_64-unknown-linux.tar.gz
27
+ wget https://github.com/risingwavelabs/risingwave/releases/download/v0.1.17 /risingwave-v0.1.17 -x86_64-unknown-linux.tar.gz
28
28
# Unzip the binary
29
- tar xvf risingwave-v0.1.16 -x86_64-unknown-linux.tar.gz
29
+ tar xvf risingwave-v0.1.17 -x86_64-unknown-linux.tar.gz
30
30
# Start RisingWave in single-binary playground mode
31
31
./risingwave playground
32
32
```
@@ -35,7 +35,7 @@ tar xvf risingwave-v0.1.16-x86_64-unknown-linux.tar.gz
35
35
36
36
``` shell
37
37
# Start RisingWave in single-binary playground mode
38
- docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/risingwavelabs/risingwave:v0.1.16 playground
38
+ docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/risingwavelabs/risingwave:v0.1.17 playground
39
39
```
40
40
41
41
** Compile from Source with [ RiseDev] ( docs/developer-guide.md#set-up-the-development-environment ) (Linux and macOS)**
Original file line number Diff line number Diff line change 1
- v0.1.16
1
+ v0.1.17
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ unzip -q awscliv2.zip && ./aws/install && mv /usr/local/bin/aws /bin/aws
32
32
33
33
echo " --- Build risingwave release binary"
34
34
cargo build -p risingwave_cmd_all --features " static-link static-log-level" --profile release
35
- cd target/release && chmod +x risingwave
35
+ cargo build --bin risectl --features " static-link static-log-level" --profile release
36
+ cd target/release && chmod +x risingwave risectl
36
37
37
38
echo " --- Upload nightly binary to s3"
38
39
if [ " ${BUILDKITE_SOURCE} " == " schedule" ]; then
@@ -53,10 +54,14 @@ if [[ -n "${BUILDKITE_TAG+x}" ]]; then
53
54
echo " --- Release create"
54
55
gh release create " ${BUILDKITE_TAG} " --notes " release ${BUILDKITE_TAG} " -d -p
55
56
56
- echo " --- Release upload asset"
57
+ echo " --- Release upload risingwave asset"
57
58
tar -czvf risingwave-" ${BUILDKITE_TAG} " -x86_64-unknown-linux.tar.gz risingwave
58
59
gh release upload " ${BUILDKITE_TAG} " risingwave-" ${BUILDKITE_TAG} " -x86_64-unknown-linux.tar.gz
59
60
61
+ echo " --- Release upload risingwave asset"
62
+ tar -czvf risectl-" ${BUILDKITE_TAG} " -x86_64-unknown-linux.tar.gz risectl
63
+ gh release upload " ${BUILDKITE_TAG} " risectl-" ${BUILDKITE_TAG} " -x86_64-unknown-linux.tar.gz
64
+
60
65
echo " --- Release build and upload risingwave connector node jar asset"
61
66
git clone https://" $GITHUB_TOKEN " @github.com/risingwavelabs/risingwave-connector-node.git
62
67
cd risingwave-connector-node && git checkout ${connector_node_version} && mvn -B package -Dmaven.test.skip=true
You can’t perform that action at this time.
0 commit comments