Skip to content

Commit 0367526

Browse files
committed
Extract as repo to openqa repo folder
1 parent cef172d commit 0367526

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

t/obs/systemsmanagement:Agama:Devel/base/print_openqa.before

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
DISTRI=opensuse \
77
FLAVOR=agama-installer \
88
ISO=agama-installer.x86_64-9.0.0-openSUSE-Build17.25.iso \
9+
MIRROR_HTTP=http://openqa.opensuse.org/assets/repo/agama-installer.x86_64-9.0.0-openSUSE-Build17.25 \
10+
MIRROR_HTTPS=https://openqa.opensuse.org/assets/repo/agama-installer.x86_64-9.0.0-openSUSE-Build17.25 \
11+
MIRROR_PREFIX=http://openqa.opensuse.org/assets/repo \
12+
REPO_0=agama-installer.x86_64-9.0.0-openSUSE-Build17.25 \
913
VERSION=agama-9.0 \
1014
_OBSOLETE=1
1115

@@ -17,6 +21,10 @@
1721
DISTRI=opensuse \
1822
FLAVOR=agama-installer \
1923
ISO=agama-installer.aarch64-9.0.0-openSUSE-Build18.1.iso \
24+
MIRROR_HTTP=http://openqa.opensuse.org/assets/repo/agama-installer.aarch64-9.0.0-openSUSE-Build18.1 \
25+
MIRROR_HTTPS=https://openqa.opensuse.org/assets/repo/agama-installer.aarch64-9.0.0-openSUSE-Build18.1 \
26+
MIRROR_PREFIX=http://openqa.opensuse.org/assets/repo \
27+
REPO_0=agama-installer.aarch64-9.0.0-openSUSE-Build18.1 \
2028
VERSION=agama-9.0 \
2129
_OBSOLETE=1
2230

@@ -28,6 +36,10 @@
2836
DISTRI=opensuse \
2937
FLAVOR=agama-installer \
3038
ISO=agama-installer.ppc64le-9.0.0-openSUSE-Build18.1.iso \
39+
MIRROR_HTTP=http://openqa.opensuse.org/assets/repo/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1 \
40+
MIRROR_HTTPS=https://openqa.opensuse.org/assets/repo/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1 \
41+
MIRROR_PREFIX=http://openqa.opensuse.org/assets/repo \
42+
REPO_0=agama-installer.ppc64le-9.0.0-openSUSE-Build18.1 \
3143
VERSION=agama-9.0 \
3244
_OBSOLETE=1
3345

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
rsync --timeout=3600 -tlp4 --specials obspublish-other::openqa/systemsmanagement:Agama:Devel//images/*/agama-installer:openSUSE//*agama-installer.x86_64-9.0.0-openSUSE-Build17.25.iso /var/lib/openqa/factory/iso/agama-installer.x86_64-9.0.0-openSUSE-Build17.25.iso
22
rsync --timeout=3600 -tlp4 --specials obspublish-other::openqa/systemsmanagement:Agama:Devel//images/*/agama-installer:openSUSE//*agama-installer.x86_64-9.0.0-openSUSE-Build17.25.iso.sha256 /var/lib/openqa/factory/other/agama-installer.x86_64-9.0.0-openSUSE-Build17.25.iso.sha256
3+
[ -d /var/lib/openqa/factory/repo/agama-installer.x86_64-9.0.0-openSUSE-Build17.25 ] || {
4+
mkdir /var/lib/openqa/factory/repo/agama-installer.x86_64-9.0.0-openSUSE-Build17.25
5+
bsdtar xf /var/lib/openqa/factory/iso/agama-installer.x86_64-9.0.0-openSUSE-Build17.25.iso -C /var/lib/openqa/factory/repo/agama-installer.x86_64-9.0.0-openSUSE-Build17.25
6+
}
37
rsync --timeout=3600 -tlp4 --specials obspublish-other::openqa/systemsmanagement:Agama:Devel//images/*/agama-installer:openSUSE//*agama-installer.aarch64-9.0.0-openSUSE-Build18.1.iso /var/lib/openqa/factory/iso/agama-installer.aarch64-9.0.0-openSUSE-Build18.1.iso
48
rsync --timeout=3600 -tlp4 --specials obspublish-other::openqa/systemsmanagement:Agama:Devel//images/*/agama-installer:openSUSE//*agama-installer.aarch64-9.0.0-openSUSE-Build18.1.iso.sha256 /var/lib/openqa/factory/other/agama-installer.aarch64-9.0.0-openSUSE-Build18.1.iso.sha256
9+
[ -d /var/lib/openqa/factory/repo/agama-installer.aarch64-9.0.0-openSUSE-Build18.1 ] || {
10+
mkdir /var/lib/openqa/factory/repo/agama-installer.aarch64-9.0.0-openSUSE-Build18.1
11+
bsdtar xf /var/lib/openqa/factory/iso/agama-installer.aarch64-9.0.0-openSUSE-Build18.1.iso -C /var/lib/openqa/factory/repo/agama-installer.aarch64-9.0.0-openSUSE-Build18.1
12+
}
513
rsync --timeout=3600 -tlp4 --specials obspublish-other::openqa/systemsmanagement:Agama:Devel//images/*/agama-installer:openSUSE//*agama-installer.ppc64le-9.0.0-openSUSE-Build18.1.iso /var/lib/openqa/factory/iso/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1.iso
614
rsync --timeout=3600 -tlp4 --specials obspublish-other::openqa/systemsmanagement:Agama:Devel//images/*/agama-installer:openSUSE//*agama-installer.ppc64le-9.0.0-openSUSE-Build18.1.iso.sha256 /var/lib/openqa/factory/other/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1.iso.sha256
15+
[ -d /var/lib/openqa/factory/repo/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1 ] || {
16+
mkdir /var/lib/openqa/factory/repo/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1
17+
bsdtar xf /var/lib/openqa/factory/iso/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1.iso -C /var/lib/openqa/factory/repo/agama-installer.ppc64le-9.0.0-openSUSE-Build18.1
18+
}

xml/obs/systemsmanagement:Agama:Devel.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
distri="opensuse"
55
version="agama-9.0">
66
<batch name="base" archs="x86_64 aarch64 ppc64le">
7-
<flavor name="agama-installer" folder="images/*/agama-installer:openSUSE/" iso="1" media1="0"/>
7+
<flavor name="agama-installer" folder="images/*/agama-installer:openSUSE/" iso="iso" extract_as_repo="1" media1="0"/>
88
</batch>
99
<batch name="s390x" archs="s390x">
1010
<flavor name="agama-installer" folder="images/*/agama-installer:openSUSE/" iso="extract_as_repo" ln_iso_to_repo="1" media1="0"/>

0 commit comments

Comments
 (0)