Hi all, I know there are fedora images available in CI is there any howto use that? I am especially looking for rawhide and f30.
I am now using something like this in build script: .... url_base="http://admin.ci.centos.org:8080" # This file was generated on your slave. See https://wiki.centos.org/QaWiki/CI/GettingStarted api=open('duffy.key').read().strip() ver="7" arch="x86_64" count=1
get_nodes_url="%s/Node/get?key=%s&ver=%s&arch=%s&count=%s" % (url_base,api,ver,arch,count)
dat=urllib.urlopen(get_nodes_url).read() b=json.loads(dat)
tests=process_raw_features(features, test_branch) print (tests)
for h in b['hosts']: h += str(".ci.centos.org")
....
any idea? I saw libvirt was for sure testing a bunch of fedoras. Thanks, Vladimir
On Wed, Mar 6, 2019, at 03:34, Vladimir Benes wrote:
Hi all, I know there are fedora images available in CI is there any howto use that? I am especially looking for rawhide and f30.
I am now using something like this in build script: .... url_base="http://admin.ci.centos.org:8080" # This file was generated on your slave. See https://wiki.centos.org/QaWiki/CI/GettingStarted api=open('duffy.key').read().strip() ver="7" arch="x86_64" count=1
get_nodes_url="%s/Node/get?key=%s&ver=%s&arch=%s&count=%s" %
(url_base,api,ver,arch,count)
dat=urllib.urlopen(get_nodes_url).read() b=json.loads(dat) tests=process_raw_features(features, test_branch) print (tests) for h in b['hosts']: h += str(".ci.centos.org")
....
any idea? I saw libvirt was for sure testing a bunch of fedoras. Thanks, Vladimir
Ci-users mailing list Ci-users@centos.org https://lists.centos.org/mailman/listinfo/ci-users
Hi Vladimir,
Currently there isn't a way to request Fedora machines from Duffy. Does your use-case require bare metal, or could virtual machines fit your workload?
Can I chime in?
We'd love to test in Fedora environment as well: VM is just enough. And if we could tinker the VM image, so that it has all the test dependencies already in, that would be super-duper awesome.
On Thu, Mar 7, 2019 at 4:05 PM Brian Stinson brian@bstinson.com wrote:
On Wed, Mar 6, 2019, at 03:34, Vladimir Benes wrote:
Hi all, I know there are fedora images available in CI is there any howto use that? I am especially looking for rawhide and f30.
I am now using something like this in build script: .... url_base="http://admin.ci.centos.org:8080" # This file was generated on your slave. See https://wiki.centos.org/QaWiki/CI/GettingStarted api=open('duffy.key').read().strip() ver="7" arch="x86_64" count=1
get_nodes_url="%s/Node/get?key=%s&ver=%s&arch=%s&count=%s" %
(url_base,api,ver,arch,count)
dat=urllib.urlopen(get_nodes_url).read() b=json.loads(dat) tests=process_raw_features(features, test_branch) print (tests) for h in b['hosts']: h += str(".ci.centos.org")
....
any idea? I saw libvirt was for sure testing a bunch of fedoras. Thanks, Vladimir
Ci-users mailing list Ci-users@centos.org https://lists.centos.org/mailman/listinfo/ci-users
Hi Vladimir,
Currently there isn't a way to request Fedora machines from Duffy. Does your use-case require bare metal, or could virtual machines fit your workload?
-- Brian Stinson brian@bstinson.com _______________________________________________ Ci-users mailing list Ci-users@centos.org https://lists.centos.org/mailman/listinfo/ci-users
Hi all, any idea if we can schedule fedora images now? I know we are sharing systems with Fedora CI (and I am testing NetworkManager there too) but I would love to have Fedora/NM-branch tested nightly to see how stable tests are and catch some issues if there are any.
Any hints? I do really want to avoid vagrant on top of CentOS images.
Thanks, Vladimir
On Wed, 2019-03-06 at 10:33 +0100, Vladimir Benes wrote:
Hi all, I know there are fedora images available in CI is there any howto use that? I am especially looking for rawhide and f30.
I am now using something like this in build script: .... url_base="http://admin.ci.centos.org:8080" # This file was generated on your slave. See https://wiki.centos.org/QaWiki/CI/GettingStarted api=open('duffy.key').read().strip() ver="7" arch="x86_64" count=1
get_nodes_url="%s/Node/get?key=%s&ver=%s&arch=%s&count=%s" %
(url_base,api,ver,arch,count)
dat=urllib.urlopen(get_nodes_url).read() b=json.loads(dat) tests=process_raw_features(features, test_branch) print (tests) for h in b['hosts']: h += str(".ci.centos.org")
....
any idea? I saw libvirt was for sure testing a bunch of fedoras. Thanks, Vladimir