File tree 5 files changed +9
-11
lines changed
5 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ ENV LANG en_US.utf8
11
11
# Use AWS ubuntu mirror
12
12
RUN sed -i 's|http://archive.ubuntu.com/ubuntu|http://us-east-2.ec2.archive.ubuntu.com/ubuntu/|g' /etc/apt/sources.list
13
13
RUN apt-get update -yy && \
14
- DEBIAN_FRONTEND=noninteractive apt-get -y install sudo make build-essential cmake protobuf-compiler curl parallel python3 python3-pip python3-venv software-properties-common \
14
+ DEBIAN_FRONTEND=noninteractive apt-get -y install sudo make build-essential cmake protobuf-compiler curl parallel python3 python3-pip python3-venv software-properties-common psmisc \
15
15
openssl libssl-dev libsasl2-dev libcurl4-openssl-dev pkg-config bash openjdk-17-jdk wget unzip git tmux lld postgresql-client kcat netcat-openbsd mysql-client \
16
16
maven zstd libzstd-dev locales \
17
17
python3.12 python3.12-dev \
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cat ../rust-toolchain
10
10
# shellcheck disable=SC2155
11
11
12
12
# REMEMBER TO ALSO UPDATE ci/docker-compose.yml
13
- export BUILD_ENV_VERSION=v20240731
13
+ export BUILD_ENV_VERSION=v20240812
14
14
15
15
export BUILD_TAG=" public.ecr.aws/w1p7b4n3/rw-build-env:${BUILD_ENV_VERSION} "
16
16
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ services:
71
71
retries : 5
72
72
73
73
source-test-env :
74
- image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240731
74
+ image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240812
75
75
depends_on :
76
76
- mysql
77
77
- sqlserver-server
@@ -85,7 +85,7 @@ services:
85
85
- ..:/risingwave
86
86
87
87
sink-test-env :
88
- image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240731
88
+ image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240812
89
89
depends_on :
90
90
- mysql
91
91
- db
@@ -108,12 +108,12 @@ services:
108
108
109
109
110
110
rw-build-env :
111
- image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240731
111
+ image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240812
112
112
volumes :
113
113
- ..:/risingwave
114
114
115
115
ci-flamegraph-env :
116
- image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240731
116
+ image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240812
117
117
# NOTE(kwannoel): This is used in order to permit
118
118
# syscalls for `nperf` (perf_event_open),
119
119
# so it can do CPU profiling.
@@ -124,7 +124,7 @@ services:
124
124
- ..:/risingwave
125
125
126
126
regress-test-env :
127
- image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240731
127
+ image : public.ecr.aws/w1p7b4n3/rw-build-env:v20240812
128
128
depends_on :
129
129
db :
130
130
condition : service_healthy
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ start_single_node() {
19
19
}
20
20
21
21
stop_single_node () {
22
- pkill risingwave
22
+ killall --wait risingwave
23
23
rm -rf " $HOME /.risingwave/state_store"
24
24
rm -rf " $HOME /.risingwave/meta_store"
25
25
}
@@ -47,7 +47,6 @@ wait_single_node() {
47
47
48
48
restart_single_node () {
49
49
stop_single_node
50
- sleep 5
51
50
start_single_node " $PREFIX_LOG " /single-node-restarted.log &
52
51
wait_single_node
53
52
}
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ start_standalone() {
75
75
}
76
76
77
77
stop_standalone () {
78
- pkill standalone
78
+ killall --wait standalone
79
79
}
80
80
81
81
wait_standalone () {
@@ -101,7 +101,6 @@ wait_standalone() {
101
101
102
102
restart_standalone () {
103
103
stop_standalone
104
- sleep 5
105
104
start_standalone " $PREFIX_LOG " /standalone-restarted.log &
106
105
wait_standalone
107
106
}
You can’t perform that action at this time.
0 commit comments