raulcd commented on PR #13991:
URL: https://github.com/apache/arrow/pull/13991#issuecomment-1230655559

   > ```
   > archery.crossbow.core.CrossbowError: Unable to parse the github owner and 
repository from the repository's remote url 
'https://github.com/ursacomputing/crossbow/'
   > ```
   > 
   > 
https://github.com/ursacomputing/crossbow/runs/8075587016?check_suite_focus=true#step:11:47
   > 
   > @raulcd Do you know where that might come from?
   
   I am not entirely sure why the remote is different but on a successful 
nightly job 
https://github.com/ursacomputing/crossbow/runs/8066802928?check_suite_focus=true#step:11:4
 the archery command uses: `--queue-remote 
https://github.com/ursacomputing/crossbow ` but on your job ` --queue-remote 
https://github.com/ursacomputing/crossbow/ ` making the regex to select the 
user repo fail:
   ```
   >>> remote_url = "https://github.com/ursacomputing/crossbow";
   >>> m = re.match(r'.*\/([^\/]+)\/([^\/\.]+)(\.git)?$', remote_url)
   >>> m
   <re.Match object; span=(0, 41), 
match='https://github.com/ursacomputing/crossbow'>
   >>> remote_url = "https://github.com/ursacomputing/crossbow/";
   >>> m = re.match(r'.*\/([^\/]+)\/([^\/\.]+)(\.git)?$', remote_url)
   >>> m
   ```
   Did you use `https://github.com/ursacomputing/crossbow/` on the 
`--queue-remote` when submitting the jobs? We probably should improve the regex


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to