Project

General

Profile

action #56789

Updated by tjyrinki_suse almost 5 years ago

Use case: 

 To be able to test tests in production (openqa.opensuse.org or openqa.suse.de) before merging the needles and tests themselves, since results have proven to vary on those loaded machines compared to local openQA instance or VM. 

 It is currently working if there are no new needles involved, but this issue describes the problem with custom needles which would be theoretically supported by openqa-clone-custom-git-refspec but not working in practice. 

 Problem description: 

 First of all, documentation [1] says "Path to needles subdirectory to use, defaults to "needles" within PRODUCTDIR. Can be a git repository URL, comparable to CASEDIR", and CASEDIR states "for example git@github.com:os-autoinst/os-autoinst-distri-opensuse.git#feature/test". 

 [1] https://github.com/os-autoinst/os-autoinst/blob/master/doc/backend_vars.asciidoc 

 However, 

     openqa-clone-custom-git-refspec https://github.com/os-autoinst/os-autoinst-distri-opensuse/pull/8332 https://openqa.opensuse.org/tests/xxxxxxxx --apikey=XXX --apisecret=XXX NEEDLES_DIR=git@github.com:tjyrinki/os-autoinst-needles-opensuse.git#poo-12345 

 results in: 

     Could not create directory '/var/lib/empty/.ssh'. 
     Host key verification failed. 
     fatal: Could not read from remote repository.     

 Using https instead (NEEDLES_DIR=https://github.com/tjyrinki/os-autoinst-needles-opensuse.git) gets one further, but openQA complains about wrong needles location: 

     init needles from /var/lib/openqa/pool/15/os-autoinst-needles-opensuse 
     Needle /var/lib/openqa/pool/15/os-autoinst-needles-opensuse/ssh-login-ok-20160813.json is not under project directory /var/lib/openqa/cache/xxx at /usr/lib/os-autoinst/needle.pm line 63. 

 Oliver Kurz suggested playing around with the PRODUCTDIR PRODUCTSDIR to try to workaround the forbidding use of (correctly checked out) needles dir which I did but it didn't get any better with trying to set that to eg pool/... directories, pool directory, which also changes on every run. 

Back