Skip to content

Commit 6efcf6c

Browse files
authored
HBASE-30281 Ignore hbase-personality.sh in author check (#8457)
Signed-off-by: Xiao Liu <liuxiaocs@apache.org>
1 parent b28d37d commit 6efcf6c

6 files changed

Lines changed: 6 additions & 6 deletions

.github/workflows/yetus-general-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
SOURCEDIR: "${{ github.workspace }}/src"
116116
TESTS_FILTER: "checkstyle,javac,pylint,shellcheck,shelldocs,blanks,perlcritic,ruby-lint,rubocop"
117117
YETUSDIR: "${{ github.workspace }}/yetus"
118-
AUTHOR_IGNORE_LIST: "hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html"
118+
AUTHOR_IGNORE_LIST: "dev-support/hbase-personality.sh,hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html"
119119
BLANKS_EOL_IGNORE_FILE: "dev-support/blanks-eol-ignore.txt"
120120
BLANKS_TABS_IGNORE_FILE: "dev-support/blanks-tabs-ignore.txt"
121121
EXCLUDE_TESTS_URL: "https://ci-hbase.apache.org/job/HBase-Find-Flaky-Tests/job/${{ github.base_ref }}/lastSuccessfulBuild/artifact/output/excludes"

.github/workflows/yetus-jdk17-hadoop3-compile-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
SOURCEDIR: "${{ github.workspace }}/src"
115115
TESTS_FILTER: "javac,javadoc"
116116
YETUSDIR: "${{ github.workspace }}/yetus"
117-
AUTHOR_IGNORE_LIST: "hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html"
117+
AUTHOR_IGNORE_LIST: "dev-support/hbase-personality.sh,hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html"
118118
BLANKS_EOL_IGNORE_FILE: "dev-support/blanks-eol-ignore.txt"
119119
BLANKS_TABS_IGNORE_FILE: "dev-support/blanks-tabs-ignore.txt"
120120
BUILD_THREAD: "4"

.github/workflows/yetus-jdk17-hadoop3-unit-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
SET_JAVA_HOME: "/usr/lib/jvm/java-17"
133133
SOURCEDIR: "${{ github.workspace }}/src"
134134
YETUSDIR: "${{ github.workspace }}/yetus"
135-
AUTHOR_IGNORE_LIST: "hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html"
135+
AUTHOR_IGNORE_LIST: "dev-support/hbase-personality.sh,hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html"
136136
BLANKS_EOL_IGNORE_FILE: "dev-support/blanks-eol-ignore.txt"
137137
BLANKS_TABS_IGNORE_FILE: "dev-support/blanks-tabs-ignore.txt"
138138
EXCLUDE_TESTS_URL: "https://ci-hbase.apache.org/job/HBase-Find-Flaky-Tests/job/${{ github.base_ref }}/lastSuccessfulBuild/artifact/output/excludes"

dev-support/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pipeline {
4343
PROJECT_PERSONALITY = 'https://raw.githubusercontent.com/apache/hbase/master/dev-support/hbase-personality.sh'
4444
PERSONALITY_FILE = 'tools/personality.sh'
4545
// This section of the docs tells folks not to use the javadoc tag. older branches have our old version of the check for said tag.
46-
AUTHOR_IGNORE_LIST = 'hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html'
46+
AUTHOR_IGNORE_LIST = 'dev-support/hbase-personality.sh,hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html'
4747
BLANKS_EOL_IGNORE_FILE = 'dev-support/blanks-eol-ignore.txt'
4848
BLANKS_TABS_IGNORE_FILE = 'dev-support/blanks-tabs-ignore.txt'
4949
// output from surefire; sadly the archive function in yetus only works on file names.

dev-support/Jenkinsfile_GitHub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pipeline {
4141
GENERAL_CHECK_PLUGINS = 'all,-javadoc,-jira,-shadedjars,-unit'
4242
JDK_SPECIFIC_PLUGINS = 'compile,github,htmlout,javac,javadoc,maven,mvninstall,shadedjars,unit'
4343
// This section of the docs tells folks not to use the javadoc tag. older branches have our old version of the check for said tag.
44-
AUTHOR_IGNORE_LIST = 'hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html'
44+
AUTHOR_IGNORE_LIST = 'dev-support/hbase-personality.sh,hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html'
4545
BLANKS_EOL_IGNORE_FILE = 'dev-support/blanks-eol-ignore.txt'
4646
BLANKS_TABS_IGNORE_FILE = 'dev-support/blanks-tabs-ignore.txt'
4747
// output from surefire; sadly the archive function in yetus only works on file names.

dev-support/hadoop3-backwards-compatibility-check.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pipeline {
135135
SKIP_ERRORPRONE = true
136136
OUTPUT_DIR_RELATIVE = "output-jdk17-hadoop3-backwards-${HADOOP3_VERSION}"
137137
OUTPUT_DIR = "${WORKSPACE}/${OUTPUT_DIR_RELATIVE}"
138-
AUTHOR_IGNORE_LIST = 'hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html'
138+
AUTHOR_IGNORE_LIST = 'dev-support/hbase-personality.sh,hbase-website/app/pages/_docs/docs/_mdx/(multi-page)/building-and-developing/developer-guidelines.mdx,hbase-website/public/book.html'
139139
BLANKS_EOL_IGNORE_FILE = 'dev-support/blanks-eol-ignore.txt'
140140
BLANKS_TABS_IGNORE_FILE = 'dev-support/blanks-tabs-ignore.txt'
141141
// output from surefire; sadly the archive function in yetus only works on file names.

0 commit comments

Comments
 (0)