File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -134,13 +134,15 @@ jobs:
134
134
- toolset : gcc-11
135
135
install : g++-11
136
136
os : ubuntu-latest
137
+ container : ubuntu:22.04
137
138
cxxstd : ' 17'
138
139
build-type : ' Debug'
139
140
ldflags : ' '
140
141
141
142
- toolset : gcc-11
142
143
install : g++-11
143
- os : ubuntu-22.04
144
+ os : ubuntu-latest
145
+ container : ubuntu:22.04
144
146
cxxstd : ' 20'
145
147
build-type : ' Release'
146
148
ldflags : ' '
@@ -177,7 +179,7 @@ jobs:
177
179
build-type : ' Release'
178
180
ldflags : ' '
179
181
180
- - toolset : clang-14,
182
+ - toolset : clang-14
181
183
install : ' clang-14 libc++-14-dev libc++abi-14-dev'
182
184
os : ubuntu-latest
183
185
container : ubuntu:22.04
@@ -283,6 +285,8 @@ jobs:
283
285
- toolset : gcc-11
284
286
install : g++-11
285
287
cxxstd : " 11,17,20" # Having C++11 shouldn't break the build
288
+ os : ubuntu-latest
289
+ container : ubuntu:22.04
286
290
- toolset : clang-14
287
291
install : clang-14
288
292
os : ubuntu-latest
Original file line number Diff line number Diff line change @@ -91,14 +91,14 @@ auto async_echo_stress(std::shared_ptr<connection> conn) -> net::awaitable<void>
91
91
92
92
// Number of coroutines that will send pings sharing the same
93
93
// connection to redis.
94
- int const sessions = 1000 ;
94
+ int const sessions = 500 ;
95
95
96
96
// The number of pings that will be sent by each session.
97
- int const msgs = 500 ;
97
+ int const msgs = 250 ;
98
98
99
99
// The number of publishes that will be sent by each session with
100
100
// each message.
101
- int const n_pubs = 100 ;
101
+ int const n_pubs = 50 ;
102
102
103
103
// This is the total number of pushes we will receive.
104
104
int total_pushes = sessions * msgs * n_pubs + 1 ;
Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ BOOST_AUTO_TEST_CASE(many_subscribers)
319
319
320
320
conn->async_exec (req0, ignore, c0);
321
321
322
- run (conn, {} , {});
322
+ run (conn, make_test_config () , {});
323
323
324
324
net::co_spawn (ioc.get_executor (), push_consumer3 (conn), net::detached);
325
325
ioc.run ();
You can’t perform that action at this time.
0 commit comments