mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-28 17:50:58 +02:00
Merge pull request #2500 from pentoo/pentoo_visibility
Update from pentoo_visibility
This commit is contained in:
commit
c8dbb923dc
4 changed files with 18 additions and 12 deletions
4
.github/workflows/pentoo-visibility.yaml
vendored
4
.github/workflows/pentoo-visibility.yaml
vendored
|
|
@ -1,6 +1,8 @@
|
|||
name: Pentoo Visibility Check
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "3 * * * *"
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
|
@ -11,7 +13,7 @@ jobs:
|
|||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
fetch-depth: 0
|
||||
-
|
||||
|
|
|
|||
4
.github/workflows/pkgcheck.yaml
vendored
4
.github/workflows/pkgcheck.yaml
vendored
|
|
@ -7,11 +7,11 @@ on:
|
|||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
pkgcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ SLOT="0"
|
|||
LICENSE="GPL-3"
|
||||
|
||||
IUSE_VIDEO_CARDS="video_cards_nvidia video_cards_virtualbox video_cards_vmware"
|
||||
IUSE="+2fa livecd-stage1 pentoo-in-a-container pentoo-minimal pentoo pentoo-extra pentoo-full qemu windows-compat +X pcmcia +subversion ${IUSE_VIDEO_CARDS}"
|
||||
IUSE="+2fa livecd-stage1 pentoo-in-a-container pentoo-minimal pentoo pentoo-extra pentoo-full qemu windows-compat pcmcia +subversion ${IUSE_VIDEO_CARDS}"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
|
|
@ -27,7 +27,6 @@ PDEPEND="${PDEPEND}
|
|||
video_cards_virtualbox? ( app-emulation/virtualbox-guest-additions )
|
||||
)
|
||||
2fa? (
|
||||
X? ( sys-auth/yubikey-personalization-gui )
|
||||
app-crypt/yubikey-manager
|
||||
app-crypt/ccid
|
||||
app-crypt/libu2f-host
|
||||
|
|
|
|||
|
|
@ -1,17 +1,22 @@
|
|||
FROM pentoolinux/pentoo-core
|
||||
|
||||
#setup gentoo repo
|
||||
# Setup repos
|
||||
WORKDIR /var/db/repos/
|
||||
# setup gentoo repo
|
||||
RUN git clone https://github.com/gentoo/gentoo.git --depth 1
|
||||
# setup pentoo repo
|
||||
#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
|
||||
|
||||
#Regen doubles the time it takes for the action to run
|
||||
#Revisit if this is worth running when we have >2 emerge calls
|
||||
#RUN time FEATURES="-ipc-sandbox -network-sandbox -pid-sandbox" 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
|
||||
|
||||
# disable minimal (pentoo-core is default 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
|
||||
|
||||
#test 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