mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 12:30:44 +02:00
Merge pull request #2499 from pentoo/pentoo_visibility
pentoo visibility
This commit is contained in:
commit
d67db88450
5 changed files with 52 additions and 35 deletions
26
.github/workflows/pentoo-visibility.yaml
vendored
Normal file
26
.github/workflows/pentoo-visibility.yaml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
name: Pentoo Visibility Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
pentoo-visibility-check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
-
|
||||
name: List added files
|
||||
run: git diff-tree --no-commit-id --name-only -r ${{ github.sha }}
|
||||
-
|
||||
name: Visibility Check
|
||||
run: |
|
||||
sudo docker build --progress=plain . -f scripts/qa/Dockerfile
|
||||
7
.github/workflows/pkgcheck.yaml
vendored
7
.github/workflows/pkgcheck.yaml
vendored
|
|
@ -2,6 +2,9 @@ name: pkgcheck
|
|||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
@ -20,9 +23,9 @@ jobs:
|
|||
- name: Tree-wide pkgcheck error check
|
||||
uses: pkgcore/pkgcheck-action@v1
|
||||
with:
|
||||
args: --exit error -k error,PkgMetadataXmlIndentation,DeprecatedManifestHash,UnusedInherits,-NonsolvableDepsInStable,-NonsolvableDepsInDev,-NonsolvableDepsInExp,-PotentialStable,-DeprecatedDep,-MissingUseDepDefault,UnknownProfilePackageUse,OldPackageUpdate,OldMultiMovePackageUpdate,LaggingProfileEapi,UnknownProfilePackageKeywords,-UnusedProfileDirs,UnquotedVariable,VisibleVcsPkg,NonexistentDeps,-MasterPackageClobbered
|
||||
args: --net --exit error -k error,PkgMetadataXmlIndentation,DeprecatedManifestHash,UnusedInherits,-NonsolvableDepsInStable,-NonsolvableDepsInDev,-NonsolvableDepsInExp,-PotentialStable,-DeprecatedDep,-MissingUseDepDefault,UnknownProfilePackageUse,OldPackageUpdate,OldMultiMovePackageUpdate,LaggingProfileEapi,UnknownProfilePackageKeywords,-UnusedProfileDirs,UnquotedVariable,VisibleVcsPkg,NonexistentDeps,-MasterPackageClobbered
|
||||
|
||||
- name: Commit pkgcheck warnings
|
||||
uses: pkgcore/pkgcheck-action@v1
|
||||
with:
|
||||
args: --exit warning -k ,PkgMetadataXmlIndentation,-NonsolvableDepsInStable,-NonsolvableDepsInDev,-PotentialStable,-DeprecatedDep,-MissingUseDepDefault,ProfileError,ProfileWarning,UnknownProfilePackageUse,OldPackageUpdate,OldMultiMovePackageUpdate,LaggingProfileEapi,UnknownProfilePackageKeywords,-UnusedProfileDirs,EclassReservedName,VisibleVcsPkg,DeprecatedEapi,MissingRemoteId,DistutilsNonPEP517Build,OldPackageNameDep,NonexistentDeps,-MasterPackageClobbered --commits HEAD^..${{ github.sha }}
|
||||
args: --net --exit warning -k ,PkgMetadataXmlIndentation,-NonsolvableDepsInStable,-NonsolvableDepsInDev,-PotentialStable,-UnknownProfilePackage,-DeprecatedDep,-MissingUseDepDefault,ProfileError,ProfileWarning,UnknownProfilePackageUse,OldPackageUpdate,OldMultiMovePackageUpdate,LaggingProfileEapi,UnknownProfilePackageKeywords,-UnusedProfileDirs,EclassReservedName,VisibleVcsPkg,DeprecatedEapi,MissingRemoteId,DistutilsNonPEP517Build,OldPackageNameDep,NonexistentDeps,-MasterPackageClobbered --commits HEAD^..${{ github.sha }}
|
||||
|
|
|
|||
29
.github/workflows/pkgcheck_merge.yaml
vendored
29
.github/workflows/pkgcheck_merge.yaml
vendored
|
|
@ -1,29 +0,0 @@
|
|||
name: pkgcheck_merge
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Tree-wide pkgcheck pentoo-ci
|
||||
uses: pkgcore/pkgcheck-action@v1
|
||||
with:
|
||||
args: -C PentooCI --exit PentooCI --net
|
||||
|
||||
- name: Tree-wide pkgcheck error check
|
||||
uses: pkgcore/pkgcheck-action@v1
|
||||
with:
|
||||
args: --exit error -k error,PkgMetadataXmlIndentation,DeprecatedManifestHash,UnusedInherits,-NonsolvableDepsInStable,-NonsolvableDepsInDev,-NonsolvableDepsInExp,-PotentialStable,-DeprecatedDep,-MissingUseDepDefault,UnknownProfilePackageUse,OldPackageUpdate,OldMultiMovePackageUpdate,LaggingProfileEapi,UnknownProfilePackageKeywords,-UnusedProfileDirs,UnquotedVariable,VisibleVcsPkg,-MasterPackageClobbered
|
||||
|
||||
- name: Commit pkgcheck warnings
|
||||
uses: pkgcore/pkgcheck-action@v1
|
||||
with:
|
||||
args: --exit warning -k ,PkgMetadataXmlIndentation,-NonsolvableDepsInStable,-NonsolvableDepsInDev,-PotentialStable,-UnknownProfilePackage,-DeprecatedDep,-MissingUseDepDefault,ProfileError,ProfileWarning,UnknownProfilePackageUse,OldPackageUpdate,OldMultiMovePackageUpdate,LaggingProfileEapi,UnknownProfilePackageKeywords,-UnusedProfileDirs,EclassReservedName,VisibleVcsPkg,DeprecatedEapi,MissingRemoteId,DistutilsNonPEP517Build,OldPackageNameDep,NonexistentDeps,-MasterPackageClobbered --commits HEAD^..${{ github.sha }}
|
||||
|
|
@ -26,14 +26,14 @@ PDEPEND="${PDEPEND}
|
|||
!pentoo-minimal? ( !pentoo-in-a-container? ( sys-apps/fwupd ) )
|
||||
video_cards_virtualbox? ( app-emulation/virtualbox-guest-additions )
|
||||
)
|
||||
2fa? ( X? ( app-crypt/yubikey-manager-qt
|
||||
sys-auth/yubikey-personalization-gui
|
||||
)
|
||||
2fa? (
|
||||
X? ( sys-auth/yubikey-personalization-gui )
|
||||
app-crypt/yubikey-manager
|
||||
app-crypt/ccid
|
||||
app-crypt/libu2f-host
|
||||
app-crypt/libu2f-server
|
||||
sys-auth/pam_yubico )
|
||||
sys-auth/pam_yubico
|
||||
)
|
||||
!arm? ( app-portage/cpuid2cpuflags )
|
||||
windows-compat? ( app-emulation/wine-vanilla )"
|
||||
|
||||
17
scripts/qa/Dockerfile
Normal file
17
scripts/qa/Dockerfile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
FROM pentoolinux/pentoo-core
|
||||
|
||||
#setup gentoo repo
|
||||
WORKDIR /var/db/repos/
|
||||
RUN git clone https://github.com/gentoo/gentoo.git --depth 1
|
||||
#RUN git clone https://github.com/pentoo/pentoo-overlay.git pentoo --depth 1
|
||||
# Use the github checkout for pentoo, that's what we are testing
|
||||
COPY . pentoo
|
||||
#RUN emerge --regen --jobs=$(nproc) --quiet
|
||||
WORKDIR /home
|
||||
#RUN sed -i 's#pentoo-in-a-container#pentoo-in-a-container -pentoo-full#' /etc/portage/make.conf
|
||||
#disable minimal
|
||||
RUN sed -i 's# pentoo-minimal##' /etc/portage/make.conf
|
||||
#install libsndfile minimal to break circular deps
|
||||
#RUN USE=minimal FEATURES="-ipc-sandbox -network-sandbox -pid-sandbox" emerge --getbinpkg=y --buildpkg=n --jobs=$(nproc) --load-average=$(nproc) --deep --update --newuse media-libs/libsndfile
|
||||
#install pentoo/pentoo
|
||||
RUN time FEATURES="-ipc-sandbox -network-sandbox -pid-sandbox" emerge --getbinpkg=y --buildpkg=n --jobs=$(nproc) --load-average=$(nproc) --deep --update --newuse pentoo/pentoo --verbose --pretend
|
||||
Loading…
Reference in a new issue