mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-21 12:21:26 +00:00
produce devel for beta
This commit is contained in:
parent
80e7aa92f1
commit
095cf4f70d
66
rocky-devel-beta.conf
Normal file
66
rocky-devel-beta.conf
Normal file
@ -0,0 +1,66 @@
|
||||
from shared/variables import *
|
||||
from rocky/variables import *
|
||||
from rocky/beta_variables import *
|
||||
from shared/all import *
|
||||
from rocky/override import *
|
||||
|
||||
# PRODUCT INFO
|
||||
release_name = "Rocky Development"
|
||||
release_short = "Rocky-devel"
|
||||
version = "8-devel"
|
||||
|
||||
skip_phases = ['buildinstall','productimg','createiso','extra_isos','extra_files']
|
||||
|
||||
# GENERAL SETTINGS
|
||||
multilib = [
|
||||
('^.*$', {
|
||||
'x86_64': ['devel', 'runtime']
|
||||
}),
|
||||
]
|
||||
|
||||
variants_file = 'variants-devel.xml'
|
||||
sigkeys = ['6D745A60']
|
||||
hashed_directories = True
|
||||
|
||||
# tree_arches = ['aarch64', 'i386', 'ppc64le', 'x86_64']
|
||||
tree_arches = ['aarch64', 'i686', 'x86_64']
|
||||
|
||||
# PKGSET
|
||||
koji_profile = "koji"
|
||||
pkgset_koji_inherit = True
|
||||
|
||||
# PKGSET - KOJI
|
||||
filter_system_release_packages = False
|
||||
|
||||
# GATHER
|
||||
gather_prepopulate = "devel-prepopulate.json"
|
||||
gather_selfhosting = True
|
||||
gather_method = "deps"
|
||||
|
||||
gather_backend = "dnf"
|
||||
check_deps = False
|
||||
greedy_method = "none"
|
||||
repoclosure_backend = "dnf"
|
||||
|
||||
# CHECKSUMS
|
||||
media_checksums = ['sha256']
|
||||
media_checksum_one_file = True
|
||||
create_jigdo = False
|
||||
|
||||
|
||||
buildinstall_skip = [
|
||||
("^(devel|AppStream|PowerTools|HighAvailability|ResilientStorage)$", {
|
||||
"*": True
|
||||
}),
|
||||
]
|
||||
|
||||
# LOOKASIDE
|
||||
variant_as_lookaside = [
|
||||
]
|
||||
|
||||
gather_lookaside_repos = [
|
||||
]
|
||||
|
||||
productimg = False
|
||||
|
||||
comps_file = ""
|
@ -10,6 +10,14 @@ if [ "$ret_val" -ne 0 ]; then
|
||||
fi
|
||||
unset ret_val
|
||||
|
||||
bash updates-8-devel-beta.sh
|
||||
|
||||
ret_val=$?
|
||||
if [ "$ret_val" -ne 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
unset ret_val
|
||||
|
||||
bash updates-8-extras-beta.sh
|
||||
|
||||
ret_val=$?
|
||||
|
42
scripts/updates-8-devel-beta.sh
Executable file
42
scripts/updates-8-devel-beta.sh
Executable file
@ -0,0 +1,42 @@
|
||||
#!/bin/bash
|
||||
|
||||
source "$(dirname "$0")/common-8"
|
||||
export PATH=/usr/sbin:/usr/bin:/root/bin
|
||||
TARGET_DIR="/mnt/compose/8-BETA"
|
||||
SHORT=devel
|
||||
CONFIG=/etc/pungi-beta/rocky-devel-beta.conf
|
||||
# Unused for now
|
||||
OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-Rocky-$SHORT-8/COMPOSE_ID)
|
||||
SKIP="--skip-phase buildinstall --skip-phase createiso --skip-phase extra_isos --skip-phase productimg"
|
||||
LABEL="--test"
|
||||
|
||||
CMD="pungi-koji --config=$CONFIG --old-composes=$TARGET_DIR $SKIP $LABEL"
|
||||
#COMPOSE_ID="Rocky-8-20210625.n.0"
|
||||
|
||||
if [ -z "$COMPOSE_ID" ]; then
|
||||
CMD="$CMD --target-dir=$TARGET_DIR"
|
||||
else
|
||||
CMD="$CMD --debug-mode --compose-dir=$TARGET_DIR/$COMPOSE_ID"
|
||||
fi
|
||||
|
||||
time $CMD
|
||||
ret_val=$?
|
||||
|
||||
if [[ "$ret_val" != "0" ]]; then
|
||||
if [[ "$MAILNOTIF" == "yes" ]]; then
|
||||
echo "This is a notification that a recent beta $SHORT compose failed on $(hostname)" | mutt -e "set from=\"$FROM\"" \
|
||||
-e 'set envelope_from=yes' \
|
||||
-s "Compose $NEWCOMPOSE_ID failed (for Rocky Linux $REVISION)" \
|
||||
releng@rockylinux.org
|
||||
fi
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$ret_val" -eq 0 ]; then
|
||||
pushd "${TARGET_DIR}/latest-Rocky-$SHORT-8/compose/$SHORT" || { echo "Could not switch."; exit 1; }
|
||||
if [ -d "i386" ]; then
|
||||
echo "Moving i386 to i686"
|
||||
mv i386 i686
|
||||
fi
|
||||
popd || { echo "Could not switch."; exit 1; }
|
||||
fi
|
Loading…
Reference in New Issue
Block a user