diff options
author | Holger Paradies <retabell@gmx.de> | 2021-04-24 20:03:24 +0200 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2021-04-24 20:07:14 +0200 |
commit | ccaab273cacdd8d5c8a0f4b6982cd8d982d8f508 (patch) | |
tree | 0b97aacd2522c7e391af2df2de29f91c34c301c0 | |
parent | 6e20392227a6b8acf8ea546f58a5f9b0cf27b788 (diff) | |
download | kanotix-ccaab273cacdd8d5c8a0f4b6982cd8d982d8f508.zip kanotix-ccaab273cacdd8d5c8a0f4b6982cd8d982d8f508.tar.gz |
Provide speedfire kde64 build
-rwxr-xr-x | nightly_build.bash | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/nightly_build.bash b/nightly_build.bash index 485f548..99123db 100755 --- a/nightly_build.bash +++ b/nightly_build.bash @@ -79,6 +79,31 @@ DISTRO=bullseye rm -rf cache tmpfs/cache sed -i 's/\(export LB_DISTRIBUTION=\).*/\1"'$DISTRO'"/' auto/config +# kde 64 +lb clean +lb config -d $DISTRO -p "kanotix-kde-master firefox wine-staging skypeforlinux" --bootloader grub2 --tmpfs true --tmpfs-options size=14G --apt-http-proxy "http://127.0.0.1:3142" --cache-packages false --gfxoverlays false -a amd64 --initsystem systemd +echo Kanotix speedfire-nightly Speedfire64 $d$v KDE > config/chroot_local-includes/etc/kanotix-version +lb build; cd tmpfs; ./isohybrid-acritox kanotix64.iso +check_iso +ls -hgo kanotix64.iso >>binary.log; rm -f kanotix64.iso +mv kanotix64.iso $target/kanotix64-speedfire-nightly-${d}${v}-KDE.iso; cd .. +cp tmpfs/binary.packages $target/kanotix64-speedfire-nightly-${d}${v}-KDE.packages +cp tmpfs/binary.log $target/kanotix64-speedfire-nightly-${d}${v}-KDE.log +cd $target +if [ ! -f kanotix64-speedfire-nightly-${d}${v}-KDE.iso ]; then + cd - + ln -s $target/kanotix64-speedfire-nightly-${d}${v}-KDE.log $next/kanotix64-speedfire-nightly-KDE.log +else + md5sum -b kanotix64-speedfire-nightly-${d}${v}-KDE.iso > kanotix64-speedfire-nightly-${d}${v}-KDE.iso.md5 + zsyncmake kanotix64-speedfire-nightly-${d}${v}-KDE.iso + cd - + ln -s $target/kanotix64-speedfire-nightly-${d}${v}-KDE.packages $next/kanotix64-speedfire-nightly-KDE.packages + ln -s $target/kanotix64-speedfire-nightly-${d}${v}-KDE.log $next/kanotix64-speedfire-nightly-KDE.log + ln -s $target/kanotix64-speedfire-nightly-${d}${v}-KDE.iso $next/kanotix64-speedfire-nightly-KDE.iso + ln -s $target/kanotix64-speedfire-nightly-${d}${v}-KDE.iso.zsync $next/kanotix64-speedfire-nightly-KDE.iso.zsync + sed "s/${d}${v}-//" $target/kanotix64-speedfire-nightly-${d}${v}-KDE.iso.md5 > $next/kanotix64-speedfire-nightly-KDE.iso.md5 +fi +# # lxde 64 lb clean lb config -d $DISTRO -p "kanotix-lxde-master firefox wine-staging skypeforlinux" --bootloader grub2 --tmpfs true --tmpfs-options size=14G --apt-http-proxy "http://127.0.0.1:3142" --cache-packages false --gfxoverlays false -a amd64 --initsystem systemd |