Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git subrepo pull (merge) external/os-autoinst-common #42

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Check subject line length
uses: gsactions/commit-message-checker@v2
with:
pattern: '^.{1,72}(\n|$)'
pattern: '^(Revert "?)?.{1,72}(\n|$)'
flags: 'g'
error: 'The maximum subject line length of 72 characters is exceeded.'
excludeDescription: 'true'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
image: perldocker/perl-tester
steps:
- uses: actions/checkout@v4
- run: ./tools/perlcritic --quiet .
- run: make test-critic
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
image: registry.opensuse.org/devel/openqa/containers/os-autoinst_dev
steps:
- uses: actions/checkout@v4
- run: GITHUB_ACTIONS=1 ./tools/tidyall --check-only --all --quiet
- run: GITHUB_ACTIONS=1 make test-tidy
4 changes: 2 additions & 2 deletions external/os-autoinst-common/.github/workflows/yamllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
- uses: actions/checkout@v4
- uses: docker://registry.opensuse.org/home/okurz/container/containers/tumbleweed:yamllint
with:
entrypoint: yamllint
args: -c .yamllint --strict ./ --format github
entrypoint: make
args: test-yaml
4 changes: 2 additions & 2 deletions external/os-autoinst-common/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[subrepo]
remote = https://github.com/os-autoinst/os-autoinst-common.git
branch = master
commit = db78c615c257969eed5d71f3fcf5efe1a09d3b5c
parent = 10683a4777aae56837fd0aaa789666914c5b71df
commit = 9a505a76f9835862211cdf59e07e2a3865320f49
parent = e21cf1ffbae9a9988a2f814e061d976da596f868
method = merge
cmdver = 0.4.6
10 changes: 9 additions & 1 deletion external/os-autoinst-common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,20 @@ update-deps:
tools/update-deps --cpanfile cpanfile

.PHONY: test
test: test-tidy test-author
test: test-tidy test-critic test-yaml test-author

.PHONY: test-tidy
test-tidy:
tools/tidyall --all --check-only

.PHONY: test-critic
test-critic:
tools/perlcritic --quiet .

.PHONY: test-yaml
test-yaml:
yamllint --strict ./

.PHONY: test-author
test-author:
prove -l -r xt/
2 changes: 1 addition & 1 deletion external/os-autoinst-common/cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on 'develop' => sub {
requires 'Code::TidyAll';
requires 'Perl::Critic';
requires 'Perl::Critic::Community';
requires 'Perl::Tidy', '== 20230912';
requires 'Perl::Tidy', '== 20240511.0.0';

};

Expand Down
2 changes: 1 addition & 1 deletion external/os-autoinst-common/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ main_requires:
perl(Module::CPANfile):

develop_requires:
perl(Perl::Tidy): '== 20230912'
perl(Perl::Tidy): '== 20240511.0.0'
perl(Code::TidyAll):
perl(Perl::Critic):
perl(Perl::Critic::Community):
Expand Down
Loading