[JIRA] (JENKINS-56317) Download from File Shares Seems to Not Use Ant Syntax

2019-04-16 Thread jie...@microsoft.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jie Shen resolved as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-56317  
 
 
  Download from File Shares Seems to Not Use Ant Syntax   
 

  
 
 
 
 

 
Change By: 
 Jie Shen  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Fixed  
 
 
Released As: 
 0.3.14 (planned)  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-56317) Download from File Shares Seems to Not Use Ant Syntax

2019-03-03 Thread vscjenk...@microsoft.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Azure DevOps commented on  JENKINS-56317  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Download from File Shares Seems to Not Use Ant Syntax   
 

  
 
 
 
 

 
 PR created https://github.com/jenkinsci/windows-azure-storage-plugin/pull/144  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-56317) Download from File Shares Seems to Not Use Ant Syntax

2019-02-27 Thread jie...@microsoft.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jie Shen commented on  JENKINS-56317  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Download from File Shares Seems to Not Use Ant Syntax   
 

  
 
 
 
 

 
 Thanks Jason Davis, I will look into this.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-56317) Download from File Shares Seems to Not Use Ant Syntax

2019-02-27 Thread jie...@microsoft.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jie Shen assigned an issue to Jie Shen  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-56317  
 
 
  Download from File Shares Seems to Not Use Ant Syntax   
 

  
 
 
 
 

 
Change By: 
 Jie Shen  
 
 
Assignee: 
 Azure DevOps Jie Shen  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-56317) Download from File Shares Seems to Not Use Ant Syntax

2019-02-27 Thread jda...@ipswitch.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jason Davis created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-56317  
 
 
  Download from File Shares Seems to Not Use Ant Syntax   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Azure DevOps  
 
 
Attachments: 
 steps-doc.png  
 
 
Components: 
 windows-azure-storage-plugin  
 
 
Created: 
 2019-02-27 20:05  
 
 
Environment: 
 Plugin: 0.3.13  Jenkins Version: 2.150.3  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Jason Davis  
 

  
 
 
 
 

 
 Not sure if this is a bug, but the docs might be confusing me.  I'm trying a simple test to see if I can download specific files directly from a specific location in a storage account.  I created a storage account and manually uploaded a foo.txt file to an "artifacts" File Share under a subfolder called Secrets.  I uploaded a copy off another in a different subfolder (Azure-Storage-Upload) of the same File Share The pipeline syntax step suggests that downloading from the File Share is possible and that files can be downloaded using ant fileset syntax (I attached a screenshot of the syntax help) I created a simple pipeline: 

 

pipeline{
agent any
stages{
stage ('Do Something'){
steps{
echo 'download'
azureDownload downloadType: 'share', 
fileShare: 'artifacts', 
includeFilesPattern: 'Secrets/foo.txt', 
storageCredentialId: 'jenkins-devops-test-02'  
}
}
}
}