Skip to content

Commit f3fcd10

Browse files
authored
move consumergroups out (#86)
* move consumergroups out * 2 2022年 01月 11日 星期二 16:32:34 CST * 3 2022年 01月 11日 星期二 17:04:16 CST * update debian image * 4 2022年 01月 11日 星期二 17:19:45 CST * cpam -v * install openssl * instlal zlib dev * no -v * -v again * install libssl-dev * enable -v in cpm * try install git * add test::warnings * rm JobAsync * remote test * remove Job::Async * update Changes * add Log::Any
1 parent 206bb2b commit f3fcd10

File tree

7 files changed

+9
-1384
lines changed

7 files changed

+9
-1384
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: debian:wheezy
5+
- image: debian:bullseye
66
steps:
77
- checkout
88
- run:
99
name: Install Perl packages
10-
command: apt-get update && apt-get install -y cpanminus make gcc
10+
command: apt-get update && apt-get install -y cpanminus make gcc openssl libssl-dev zlib1g-dev git
1111
- run:
1212
name: Install dzil
13-
command: cpanm --quiet --notest Dist::Zilla Dist::Zilla::App::Command::cover App::cpm Devel::Cover::Report::Codecov https://cpan.metacpan.org/authors/id/S/SR/SRI/Mojolicious-7.29.tar.gz https://cpan.metacpan.org/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-7.30.tar.gz
13+
command: cpanm --notest Dist::Zilla Dist::Zilla::App::Command::cover App::cpm Devel::Cover::Report::Codecov https://cpan.metacpan.org/authors/id/S/SR/SRI/Mojolicious-7.29.tar.gz https://cpan.metacpan.org/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-7.30.tar.gz
1414
- run:
1515
name: Install dzil author deps
16-
command: cpm install -w 2 --mirror=http://cpan.cpantesters.org/ -g $(dzil authordeps --missing)
16+
command: cpm install --show-build-log-on-failure -w 2 --mirror=http://cpan.cpantesters.org/ -g $(dzil authordeps --missing)
1717
- run:
1818
name: Install distribution deps
19-
command: cpm install -w 2 --mirror=http://cpan.cpantesters.org/ -g $(dzil listdeps --author --missing)
19+
command: cpm install --show-build-log-on-failure -w 2 --mirror=http://cpan.cpantesters.org/ -g $(dzil listdeps --author --missing)
2020
- run:
2121
name: Run smoke test
2222
command: dzil smoke --release --author

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
Revision history for Perl module Mojo::WebSocketProxy
2+
{{$NEXT}}
3+
- Move Mojo::WebSocketProxy::Backend::JobAsync and Mojo::WebSocketProxy::Backend::ConsumerGroups out
24

35
{{$NEXT}}
46
- Add support for separating messages to different channels with

cpanfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ requires 'Syntax::Keyword::Try', '>= 0.04';
1414
requires 'perl', '5.024';
1515
requires 'Mojo::Redis2';
1616
requires 'Data::UUID';
17-
18-
requires 'Job::Async', 0;
17+
requires 'Log::Any';
1918

2019
on configure => sub {
2120
requires 'ExtUtils::MakeMaker', '7.1101';
@@ -30,4 +29,5 @@ on test => sub {
3029
requires 'Test::MockObject';
3130
requires 'Test::More', '0.98';
3231
requires 'Test::TCP';
32+
requires 'Test::Warnings';
3333
};

0 commit comments

Comments
 (0)