Update to PikaOS 4
This commit is contained in:
parent
40ac38ba0f
commit
a1f741d14c
34
.github/workflows/build-canaryv3.yml
vendored
Normal file
34
.github/workflows/build-canaryv3.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
name: PikaOS Package Build Only (Canary) (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: self-hosted
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Import GPG key
|
||||||
|
id: import_gpg
|
||||||
|
uses: crazy-max/ghaction-import-gpg@v5
|
||||||
|
with:
|
||||||
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./mainv3.sh
|
34
.github/workflows/build-nestv3.yml
vendored
Normal file
34
.github/workflows/build-nestv3.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
name: PikaOS Package Build Only (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: self-hosted
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Import GPG key
|
||||||
|
id: import_gpg
|
||||||
|
uses: crazy-max/ghaction-import-gpg@v5
|
||||||
|
with:
|
||||||
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./mainv3.sh
|
@ -1,4 +1,4 @@
|
|||||||
name: PikaOS Package Release
|
name: PikaOS Package Build & Release (Canary) (amd64-v3)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch
|
workflow_dispatch
|
||||||
@ -7,7 +7,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/pikaos-linux/pika-package-container:latest
|
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||||
volumes:
|
volumes:
|
||||||
- /proc:/proc
|
- /proc:/proc
|
||||||
options: --privileged -it
|
options: --privileged -it
|
||||||
@ -31,16 +31,7 @@ jobs:
|
|||||||
if_key_exists: replace
|
if_key_exists: replace
|
||||||
|
|
||||||
- name: Build Package
|
- name: Build Package
|
||||||
run: ./main.sh
|
run: ./mainv3.sh
|
||||||
|
|
||||||
- name: Release Package
|
- name: Release Package
|
||||||
run: ./release.sh
|
run: ./release.sh
|
||||||
|
|
||||||
- name: Purge cache
|
|
||||||
uses: strrife/cloudflare-chunked-purge-action@master
|
|
||||||
env:
|
|
||||||
# Zone is required by both authentication methods
|
|
||||||
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
|
|
||||||
|
|
||||||
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
|
|
||||||
PURGE_URLS: ${{ vars.PURGE_URLS }}
|
|
37
.github/workflows/release-nestv3.yml
vendored
Normal file
37
.github/workflows/release-nestv3.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: PikaOS Package Build & Release (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: self-hosted
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Import GPG key
|
||||||
|
id: import_gpg
|
||||||
|
uses: crazy-max/ghaction-import-gpg@v5
|
||||||
|
with:
|
||||||
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./mainv3.sh
|
||||||
|
|
||||||
|
- name: Release Package
|
||||||
|
run: ./release.sh
|
14
main.sh
14
main.sh
@ -1,14 +0,0 @@
|
|||||||
# Clone Upstream
|
|
||||||
cd ./pika-baseos
|
|
||||||
|
|
||||||
# Get build deps
|
|
||||||
apt-get build-dep ./ -y
|
|
||||||
|
|
||||||
# Build package
|
|
||||||
dh_make --createorig
|
|
||||||
dpkg-buildpackage
|
|
||||||
|
|
||||||
# Move the debs to output
|
|
||||||
cd ../
|
|
||||||
mkdir -p ./output
|
|
||||||
mv ./*.deb ./output/
|
|
23
mainv3.sh
Executable file
23
mainv3.sh
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||||
|
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
||||||
|
|
||||||
|
# Clone Upstream
|
||||||
|
cd ./pika-baseos
|
||||||
|
|
||||||
|
# Get build deps
|
||||||
|
apt-get build-dep ./ -y
|
||||||
|
|
||||||
|
# Build package
|
||||||
|
dh_make --createorig
|
||||||
|
dpkg-buildpackage
|
||||||
|
|
||||||
|
# Move the debs to output
|
||||||
|
cd ../
|
||||||
|
mkdir -p ./output
|
||||||
|
mv ./*.deb ./output/
|
@ -1,3 +1,9 @@
|
|||||||
|
pika-baseos (3.0.0-101pika1) pika; urgency=medium
|
||||||
|
|
||||||
|
* PikaOS 4
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
||||||
|
|
||||||
pika-baseos (2.5.4-100pika8) pikauwu; urgency=medium
|
pika-baseos (2.5.4-100pika8) pikauwu; urgency=medium
|
||||||
|
|
||||||
* Remove ACPI-CALL-DKMS as it is built into the kernel
|
* Remove ACPI-CALL-DKMS as it is built into the kernel
|
||||||
|
@ -9,10 +9,76 @@ Rules-Requires-Root: no
|
|||||||
Package: pika-baseos
|
Package: pika-baseos
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Essential: yes
|
Essential: yes
|
||||||
|
Pre-Depends:
|
||||||
|
## Basic minimal setup
|
||||||
|
adduser,
|
||||||
|
apt,
|
||||||
|
apt-utils,
|
||||||
|
console-setup,
|
||||||
|
debconf,
|
||||||
|
debconf-i18n,
|
||||||
|
dhcpcd-base,
|
||||||
|
e2fsprogs,
|
||||||
|
eject,
|
||||||
|
init,
|
||||||
|
iproute2,
|
||||||
|
iputils-ping,
|
||||||
|
kbd,
|
||||||
|
kmod,
|
||||||
|
less,
|
||||||
|
locales,
|
||||||
|
lsb-release,
|
||||||
|
mawk,
|
||||||
|
mount,
|
||||||
|
netbase,
|
||||||
|
netcat-openbsd,
|
||||||
|
netplan.io,
|
||||||
|
passwd,
|
||||||
|
procps,
|
||||||
|
python3,
|
||||||
|
sensible-utils,
|
||||||
|
sudo,
|
||||||
|
tzdata,
|
||||||
|
udev,
|
||||||
|
vim-tiny,
|
||||||
|
whiptail,
|
||||||
|
rsyslog,
|
||||||
Depends: ${misc:Depends},
|
Depends: ${misc:Depends},
|
||||||
# Base
|
# Base
|
||||||
|
## Basic minimal setup
|
||||||
|
adduser,
|
||||||
|
apt,
|
||||||
|
apt-utils,
|
||||||
|
console-setup,
|
||||||
|
debconf,
|
||||||
|
debconf-i18n,
|
||||||
|
dhcpcd-base,
|
||||||
|
e2fsprogs,
|
||||||
|
eject,
|
||||||
|
init,
|
||||||
|
iproute2,
|
||||||
|
iputils-ping,
|
||||||
|
kbd,
|
||||||
|
kmod,
|
||||||
|
less,
|
||||||
|
locales,
|
||||||
|
lsb-release,
|
||||||
|
mawk,
|
||||||
|
mount,
|
||||||
|
netbase,
|
||||||
|
netcat-openbsd,
|
||||||
|
netplan.io,
|
||||||
|
passwd,
|
||||||
|
procps,
|
||||||
|
python3,
|
||||||
|
sensible-utils,
|
||||||
|
sudo,
|
||||||
|
tzdata,
|
||||||
|
udev,
|
||||||
|
vim-tiny,
|
||||||
|
whiptail,
|
||||||
|
rsyslog,
|
||||||
## General
|
## General
|
||||||
ubuntu-minimal,
|
|
||||||
libglib2.0-bin,
|
libglib2.0-bin,
|
||||||
pika-package-manager,
|
pika-package-manager,
|
||||||
apt-transport-https,
|
apt-transport-https,
|
||||||
@ -23,7 +89,6 @@ Depends: ${misc:Depends},
|
|||||||
dbus-user-session,
|
dbus-user-session,
|
||||||
pika-sources,
|
pika-sources,
|
||||||
openssh-server,
|
openssh-server,
|
||||||
ppa-purge,
|
|
||||||
nano,
|
nano,
|
||||||
bash-completion,
|
bash-completion,
|
||||||
wget,
|
wget,
|
||||||
@ -47,7 +112,6 @@ Depends: ${misc:Depends},
|
|||||||
xdg-desktop-portal,
|
xdg-desktop-portal,
|
||||||
xdg-user-dirs,
|
xdg-user-dirs,
|
||||||
xdg-utils,
|
xdg-utils,
|
||||||
xdg-terminal,
|
|
||||||
## Filesystems
|
## Filesystems
|
||||||
lvm2,
|
lvm2,
|
||||||
ecryptfs-utils,
|
ecryptfs-utils,
|
||||||
|
@ -2,3 +2,4 @@
|
|||||||
systemctl disable --now gpu-manager || true
|
systemctl disable --now gpu-manager || true
|
||||||
systemctl mask gpu-manager || true
|
systemctl mask gpu-manager || true
|
||||||
systemctl enable --now nvidia-pika-prime || true
|
systemctl enable --now nvidia-pika-prime || true
|
||||||
|
apt-mark hold snapd || true
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
|
|
||||||
#LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"$(echo $(for i in /usr/share/pika/ld.so.d/*; do cat $i && echo -e "\n" ; done) | grep -v '^#' | tr '\n' ':' | tr ' ' ':')"
|
|
Loading…
Reference in New Issue
Block a user