Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions script/cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ def rsync_repomultiarch(destpath, debug, source):
'''

if debug:
debugfilter = "--include=" + debug + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,s390x,src,x86_64}/*"
debugfilter = "--include=" + debug + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,riscv64,s390x,src,x86_64}/*"
res = res + '''
echo rsync --timeout=3600 -rtlp4 --delete --specials ''' + debugfilter + ''' PRODUCTREPOPATH/'''+ destpath +'''-Debug/ /var/lib/openqa/factory/repo/''' + dest + '''-Debug-CURRENT/
echo rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/''' + dest + '''-Debug-CURRENT/ /var/lib/openqa/factory/repo/''' + dest + '''-Debug-CURRENT/ /var/lib/openqa/factory/repo/''' + dest + '''-Debug-$buildid/'''

if source:
sourcefilter = "--include=" + source + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,s390x,src,x86_64}/*"
sourcefilter = "--include=" + source + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,riscv64,s390x,src,x86_64}/*"
res = res + '''
echo rsync --timeout=3600 -rtlp4 --delete --specials ''' + sourcefilter + ''' PRODUCTREPOPATH/'''+ destpath +'''-Source/ /var/lib/openqa/factory/repo/''' + dest + '''-Source-CURRENT/
echo rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/''' + dest + '''-Source-CURRENT/ /var/lib/openqa/factory/repo/''' + dest + '''-Source-CURRENT/ /var/lib/openqa/factory/repo/''' + dest + '''-Source-$buildid/'''
Expand Down Expand Up @@ -233,7 +233,7 @@ def rsync_repodir1_dest_media0(dest, debug, source, folder):
[[ $src != *"-Debug" ]] || {
'''
if debug:
xtra="--include=" + debug + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,s390x,src,x86_64}/*"
xtra="--include=" + debug + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,riscv64,s390x,src,x86_64}/*"
res = res + '''
echo rsync --timeout=3600 -rtlp4 --delete --specials ''' + xtra + ''' PRODUCTREPOPATH/''' + folder + '''/$src/ /var/lib/openqa/factory/repo/$dest-CURRENT-Debug/
echo rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/$dest-CURRENT-Debug/ /var/lib/openqa/factory/repo/$dest-CURRENT-Debug/ /var/lib/openqa/factory/repo/$dest-$buildid-Debug
Expand All @@ -247,7 +247,7 @@ def rsync_repodir1_dest_media0(dest, debug, source, folder):
[[ $src != *"-Source" ]] || {
'''
if source:
xtra="--include=" + source + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,s390x,src,x86_64}/*"
xtra="--include=" + source + " --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,riscv64,s390x,src,x86_64}/*"
res = res + '''
echo rsync --timeout=3600 -rtlp4 --delete --specials ''' + xtra + ''' PRODUCTREPOPATH/''' + folder + '''/$src/ /var/lib/openqa/factory/repo/$dest-CURRENT-Source/
echo rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/$dest-CURRENT-Source/ /var/lib/openqa/factory/repo/$dest-CURRENT-Source/ /var/lib/openqa/factory/repo/$dest-$buildid-Source
Expand Down
6 changes: 3 additions & 3 deletions script/scriptgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, envdir, project, productpath, version, brand):
if productpath and "::" not in productpath and "//" not in productpath:
pp = os.path.join(pp, productpath)
self.productpath = pp
self.archs = "aarch64 armv7l armv7hl ppc64le s390x x86_64"
self.archs = "aarch64 armv7l armv7hl ppc64le riscv64 s390x x86_64"
self.media1 = 1

def staging(self):
Expand Down Expand Up @@ -945,7 +945,7 @@ def gen_print_rsync_repo(self, f):
"files_repo.lst",
"files_repo_{}.lst".format(os.path.basename(r.attrib["folder"]).lstrip("*")),
"RSYNCFILTER",
" --include=PACKAGES --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,s390x,src,x86_64}/*".replace(
" --include=PACKAGES --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,riscv64,s390x,src,x86_64}/*".replace(
"PACKAGES", r.attrib["debug"]
),
)
Expand All @@ -965,7 +965,7 @@ def gen_print_rsync_repo(self, f):
"files_repo.lst",
"files_repo_{}.lst".format(os.path.basename(r.attrib["folder"]).lstrip("*")),
"RSYNCFILTER",
" --include=PACKAGES --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,s390x,src,x86_64}/*".replace(
" --include=PACKAGES --exclude={aarch64,armv7hl,i586,i686,noarch,nosrc,ppc64,ppc64le,riscv64,s390x,src,x86_64}/*".replace(
"PACKAGES", r.attrib["source"]
),
"Media2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
rsync --timeout=3600 -rtlp4 --delete --specials obspublish::openqa/openSUSE:Factory:ARM:ToTest/images/local/0openSUSE/openSUSE-20240610-armv6hl-armv7hl-aarch64/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-Snapshot20240610
rsync --timeout=3600 -rtlp4 --delete --specials --include=java* --include=kernel-default-debug* --include=kernel-default-base-debug* --include=mraa-debug* --include=wicked-debug* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:ARM:ToTest/images/local/0openSUSE/openSUSE-20250610-armv6hl-armv7hl-aarch64-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Debug/
rsync --timeout=3600 -rtlp4 --delete --specials --include=java* --include=kernel-default-debug* --include=kernel-default-base-debug* --include=mraa-debug* --include=wicked-debug* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=riscv64/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:ARM:ToTest/images/local/0openSUSE/openSUSE-20250610-armv6hl-armv7hl-aarch64-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Debug/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-Snapshot20240610-Debug
rsync --timeout=3600 -rtlp4 --delete --specials --include=coreutils* --include=yast2-network* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:ARM:ToTest/images/local/0openSUSE/openSUSE-20250610-armv6hl-armv7hl-aarch64-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Source/
rsync --timeout=3600 -rtlp4 --delete --specials --include=coreutils* --include=yast2-network* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=riscv64/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:ARM:ToTest/images/local/0openSUSE/openSUSE-20250610-armv6hl-armv7hl-aarch64-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Source/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-CURRENT-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64-Snapshot20240610-Source
rsync --timeout=3600 -rtlp4 --delete --specials obspublish::openqa/openSUSE:Factory:ARM:ToTest/images/local/0openSUSE/openSUSE-20250610-armv6hl-armv7hl-aarch64.license/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64.license-CURRENT/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64.license-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64.license-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-armv6hl-armv7hl-aarch64.license-Snapshot20240610
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
rsync --timeout=3600 -rtlp4 --delete --specials obspublish::openqa/openSUSE:Factory:LegacyX86:ToTest/images/local/0openSUSE/openSUSE-20250730-i586-i686/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-Snapshot20221207
rsync --timeout=3600 -rtlp4 --delete --specials --include=java* --include=kernel-default-debug* --include=kernel-default-base-debug* --include=mraa-debug* --include=wicked-debug* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:LegacyX86:ToTest/images/local/0openSUSE/openSUSE-20250730-i586-i686-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Debug/
rsync --timeout=3600 -rtlp4 --delete --specials --include=java* --include=kernel-default-debug* --include=kernel-default-base-debug* --include=mraa-debug* --include=wicked-debug* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=riscv64/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:LegacyX86:ToTest/images/local/0openSUSE/openSUSE-20250730-i586-i686-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Debug/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-Snapshot20221207-Debug
rsync --timeout=3600 -rtlp4 --delete --specials --include=coreutils* --include=yast2-network* --include=yast2-http-server* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:LegacyX86:ToTest/images/local/0openSUSE/openSUSE-20250730-i586-i686-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Source/
rsync --timeout=3600 -rtlp4 --delete --specials --include=coreutils* --include=yast2-network* --include=yast2-http-server* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=riscv64/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:LegacyX86:ToTest/images/local/0openSUSE/openSUSE-20250730-i586-i686-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Source/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-CURRENT-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586-Snapshot20221207-Source
rsync --timeout=3600 -rtlp4 --delete --specials obspublish::openqa/openSUSE:Factory:LegacyX86:ToTest/images/local/0openSUSE/openSUSE-20250730-i586-i686.license/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586.license-CURRENT/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586.license-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586.license-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-LegacyX86-oss-i586.license-Snapshot20221207
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
rsync --timeout=3600 -rtlp4 --delete --specials obspublish::openqa/openSUSE:Factory:PowerPC:ToTest/images/local/0openSUSE/openSUSE-20250730-ppc64le/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-Snapshot20200115
rsync --timeout=3600 -rtlp4 --delete --specials --include=java* --include=kernel-default-debug* --include=kernel-default-base-debug* --include=mraa-debug* --include=wicked-debug* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:PowerPC:ToTest/images/local/0openSUSE/openSUSE-20250730-ppc64le-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Debug/
rsync --timeout=3600 -rtlp4 --delete --specials --include=java* --include=kernel-default-debug* --include=kernel-default-base-debug* --include=mraa-debug* --include=wicked-debug* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=riscv64/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:PowerPC:ToTest/images/local/0openSUSE/openSUSE-20250730-ppc64le-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Debug/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Debug/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-Snapshot20200115-Debug
rsync --timeout=3600 -rtlp4 --delete --specials --include=coreutils* --include=yast2-network* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:PowerPC:ToTest/images/local/0openSUSE/openSUSE-20250730-ppc64le-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Source/
rsync --timeout=3600 -rtlp4 --delete --specials --include=coreutils* --include=yast2-network* --exclude=aarch64/* --exclude=armv7hl/* --exclude=i586/* --exclude=i686/* --exclude=noarch/* --exclude=nosrc/* --exclude=ppc64/* --exclude=ppc64le/* --exclude=riscv64/* --exclude=s390x/* --exclude=src/* --exclude=x86_64/* obspublish::openqa/openSUSE:Factory:PowerPC:ToTest/images/local/0openSUSE/openSUSE-20250730-ppc64le-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Source/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-CURRENT-Source/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le-Snapshot20200115-Source
rsync --timeout=3600 -rtlp4 --delete --specials obspublish::openqa/openSUSE:Factory:PowerPC:ToTest/images/local/0openSUSE/openSUSE-20250730-ppc64le.license/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le.license-CURRENT/
rsync --timeout=3600 -rtlp4 --delete --specials --link-dest /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le.license-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le.license-CURRENT/ /var/lib/openqa/factory/repo/openSUSE-Tumbleweed-oss-ppc64_ppc64le.license-Snapshot20200115
1 change: 1 addition & 0 deletions t/obs/openSUSE:Factory:RISCV:ToTest/base-dvd/files_iso.lst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
openSUSE-20250822-riscv64-Debug
openSUSE-20250822-riscv64-Source
openSUSE-20250822-riscv64.license
openSUSE-20250822-riscv64
25 changes: 25 additions & 0 deletions t/obs/openSUSE:Factory:RISCV:ToTest/base-dvd/print_openqa.before
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/usr/bin/openqa-cli api -X post isos?async=1 \
ARCH=riscv64 \
ASSET_256=openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso.sha256 \
BUILD=20250825 \
CHECKSUM_ISO=$(cut -b-64 /var/lib/openqa/factory/other/openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso.sha256 | grep -E '[0-9a-f]{5,40}' | head -n1) \
DISTRI=opensuse \
FLAVOR=DVD \
FULLURL=1 \
ISO=openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso \
MIRROR_HTTP=http://openqa.opensuse.org/assets/repo/openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825 \
MIRROR_HTTPS=https://openqa.opensuse.org/assets/repo/openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825 \
MIRROR_PREFIX=http://openqa.opensuse.org/assets/repo \
REPO_0=openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825 \
REPO_1=openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825-Debug \
REPO_2=openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825-Source \
REPO_3=openSUSE-Tumbleweed-oss-riscv64.license-Snapshot20250825 \
REPO_OSS=openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825 \
REPO_OSS_DEBUG=openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825-Debug \
REPO_OSS_DEBUG_PACKAGES='java*,kernel-default-debug*,kernel-default-base-debug*,mraa-debug*,wicked-debug*' \
REPO_OSS_SOURCE=openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825-Source \
REPO_OSS_SOURCE_PACKAGES='coreutils*,yast2-network*' \
SUSEMIRROR=http://openqa.opensuse.org/assets/repo/openSUSE-Tumbleweed-oss-riscv64-Snapshot20250825 \
VERSION=Tumbleweed \
_OBSOLETE=1

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rsync --timeout=3600 -tlp4 --specials obspublish::openqa/openSUSE:Factory:RISCV:ToTest/images/local/*product*/*openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso /var/lib/openqa/factory/iso/openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso
rsync --timeout=3600 -tlp4 --specials obspublish::openqa/openSUSE:Factory:RISCV:ToTest/images/local/*product*/*openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso.sha256 /var/lib/openqa/factory/other/openSUSE-Tumbleweed-DVD-riscv64-Snapshot20250825-Media.iso.sha256
Empty file.
1 change: 1 addition & 0 deletions t/obs/openSUSE:Factory:RISCV:ToTest/base/files_iso.lst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
openSUSE-Tumbleweed-NET-riscv64-Snapshot20250825-Media.iso
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
openSUSE-20250822-riscv64-Debug
openSUSE-20250822-riscv64-Source
openSUSE-20250822-riscv64.license
openSUSE-20250822-riscv64
Loading