Testing for raspi

Signed-off-by: debianpepper <peppermintosteam@proton.me>
This commit is contained in:
debianpepper 2023-07-11 21:43:25 +09:00
parent bab303aa15
commit 631875eac5
2 changed files with 26 additions and 10 deletions

View File

@ -123,12 +123,12 @@ def readybuild():
inflate_bubble.set_fusato_structure()
# Packages
inflate_bubble.set_desktop_environment()
inflate_bubble.set_extra_packages()
inflate_bubble.set_general_packages()
inflate_bubble.set_system_packages()
#inflate_bubble.set_extra_packages()
#inflate_bubble.set_general_packages()
#inflate_bubble.set_system_packages()
inflate_bubble.set_system_packages_64()
inflate_bubble.set_artwork_packages()
inflate_bubble.set_python_packages()
#inflate_bubble.set_artwork_packages()
#inflate_bubble.set_python_packages()
inflate_bubble.set_calamares_packages()
#inflate_bubble.set_firmware_packages()
inflate_bubble.set_binary_packages_64()
@ -148,12 +148,12 @@ def readybuild():
inflate_bubble.set_fusato_structure()
# Packages
inflate_bubble.set_desktop_environment()
inflate_bubble.set_extra_packages()
inflate_bubble.set_general_packages()
inflate_bubble.set_system_packages()
#inflate_bubble.set_extra_packages()
#inflate_bubble.set_general_packages()
#inflate_bubble.set_system_packages()
inflate_bubble.set_system_packages_64()
inflate_bubble.set_artwork_packages()
inflate_bubble.set_python_packages()
#inflate_bubble.set_artwork_packages()
#inflate_bubble.set_python_packages()
inflate_bubble.set_calamares_packages()
#inflate_bubble.set_firmware_packages()
inflate_bubble.set_binary_packages_64()

View File

@ -131,6 +131,22 @@ def copy_iso_file_nightly_dev64():
os.rename(src_sum, rdes_sum)
shutil.copy(rdes_sum, des_sum)
def copy_iso_file_prod_deb64():
""" Copy the pro nightly and prep it for production push"""
today = str(date.today())
nstring = '/var/www/html/nightly/deb64/'
nightly_folder = Path( nstring ).expanduser()
string_nightly = str(nightly_folder)
pstring= '/var/www/html/prod/'
production_folder = Path( pstring ).expanduser()
string_production = str(production_folder)
src_iso = string_nightly + 'PeppermintOS-Debian_64_' + today + '.iso'
rdes = string_nightly + 'PeppermintOS-Debian-64.iso'
des_iso = pstring
os.rename(src_iso, rdes)
shutil.copy(rdes, des_iso)
os.remove(rdes)
def copy_iso_file_nightly_debarm():
""" Copy the new ISO to the Nightly folder"""