-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kristoffer Grönlund
committed
Dec 17, 2019
1 parent
e285ebb
commit 2c11133
Showing
10 changed files
with
93 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/bash | ||
doit() { | ||
if [ -d wip/home:KGronlund:branches:$1 ]; then | ||
cd wip/home:KGronlund:branches:$1 | ||
osc sr -m "$2" | ||
cd ../../.. | ||
fi | ||
} | ||
|
||
for project in ceph-image rook-ceph-image ceph-csi-image; do | ||
for repo in filesystems:ceph filesystems:ceph:octopus filesystems:ceph:nautilus Devel:Storage:6.0 Devel:Storage:7.0; do | ||
doit "$repo/$project" "$(cat entry.txt | head -1)" | ||
done | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,35 @@ | ||
{ | ||
"images": ["ceph-image", "ceph-csi-image", "rook-ceph-image"], | ||
"repositories": { | ||
"obs://filesystems:ceph": "tumbleweed", | ||
"obs://filesystems:ceph:nautilus": "leap15_1", | ||
"obs://filesystems:ceph:octopus": "leap15_2", | ||
"obs://filesystems:ceph:upstream:master": "leap15_2", | ||
"ibs://Devel:Storage:6.0": "ses6", | ||
"ibs://Devel:Storage:7.0": "ses7" | ||
"obs://filesystems:ceph": { | ||
"variant": "tumbleweed", | ||
"registry": "registry.opensuse.org", | ||
"name_prefix": "/" | ||
}, | ||
"obs://filesystems:ceph:nautilus": { | ||
"variant": "leap15_1", | ||
"registry": "registry.opensuse.org", | ||
"name_prefix": "/filesystems/ceph/nautilus/images/" | ||
}, | ||
"obs://filesystems:ceph:octopus": { | ||
"variant": "leap15_2", | ||
"registry": "registry.opensuse.org", | ||
"name_prefix": "/filesystems/ceph/octopus/images/" | ||
}, | ||
"obs://filesystems:ceph:master:upstream": { | ||
"variant": "leap15_2", | ||
"registry": "registry.opensuse.org", | ||
"name_prefix": "/filesystems/ceph/master/upstream/images/" | ||
}, | ||
"ibs://Devel:Storage:6.0": { | ||
"variant": "ses6", | ||
"registry": "registry.suse.com", | ||
"name_prefix": "/" | ||
}, | ||
"ibs://Devel:Storage:7.0": { | ||
"variant": "ses7", | ||
"registry": "registry.suse.com", | ||
"name_prefix": "/" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/bash | ||
chf="$(pwd)/entry.txt" | ||
|
||
doit() { | ||
if [ -d wip/home:KGronlund:branches:$1 ]; then | ||
cd wip/home:KGronlund:branches:$1 | ||
osc vc -F $chf | ||
osc commit -m "$(cat $chf | head -1)" | ||
cd ../../.. | ||
fi | ||
} | ||
|
||
for project in ceph-image rook-ceph-image ceph-csi-image; do | ||
for repo in filesystems:ceph filesystems:ceph:octopus filesystems:ceph:nautilus Devel:Storage:6.0 Devel:Storage:7.0; do | ||
doit "$repo/$project" | ||
done | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters