commit: 527bfec7bc602d4cbf0148a7c512da026a07b885 Author: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> AuthorDate: Thu Jun 30 12:24:47 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Jun 30 16:11:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=527bfec7
CI: add pkgcheck Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in> Signed-off-by: Sam James <sam <AT> gentoo.org> .github/workflows/data/layout.conf | 15 +++++++++++++++ .github/workflows/pkgcheck.yml | 23 +++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/.github/workflows/data/layout.conf b/.github/workflows/data/layout.conf new file mode 100644 index 0000000000..5214a28976 --- /dev/null +++ b/.github/workflows/data/layout.conf @@ -0,0 +1,15 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +masters = gentoo + +# Please keep this reasonably in sync with ::gentoo +manifest-hashes = BLAKE2B SHA512 +manifest-required-hashes = BLAKE2B +update-changelog = false +cache-formats = md5-dict +thin-manifests = true +sign-commits = true +sign-manifests = false +eapis-banned = 0 1 2 3 4 +eapis-deprecated = 5 6 diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml new file mode 100644 index 0000000000..b461f72ab8 --- /dev/null +++ b/.github/workflows/pkgcheck.yml @@ -0,0 +1,23 @@ +name: pkgcheck + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup ebuild repository + run: | + mkdir -p metadata + cp .github/workflows/data/layout.conf metadata/ + mkdir -p profiles + echo "prefix" > profiles/repo_name + - name: Run pkgcheck + uses: pkgcore/pkgcheck-action@v1 + with: + args: --keywords=-RedundantVersion,-MissingAccountIdentifier,-OldPackageUpdate
