Skip to content

Commit 983ba19

Browse files
committed
Fix azure pipelines script
Remove all of the steps for a binary release, since this doesn't have any binary artifacts for distribution
1 parent c46de1d commit 983ba19

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

azure-pipelines.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,6 @@ steps:
4444
- script: cargo build --all --release
4545
condition: and(and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/')), not( eq( variables['Agent.OS'], 'Windows_NT' ) ))
4646
displayName: Build release binary
47-
- task: CopyFiles@2
48-
displayName: Copy assets
49-
condition: and(and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/')), not( eq( variables['Agent.OS'], 'Windows_NT' ) ))
50-
inputs:
51-
sourceFolder: '$(Build.SourcesDirectory)/target/release'
52-
contents: |
53-
nib
54-
targetFolder: '$(Build.BinariesDirectory)'
55-
- task: ArchiveFiles@2
56-
displayName: Compress binary
57-
condition: and(and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/')), not( eq( variables['Agent.OS'], 'Windows_NT' ) ))
58-
inputs:
59-
rootFolderOrFile: '$(Build.BinariesDirectory)/nib'
60-
archiveType: 'tar'
61-
tarCompression: 'gz'
62-
archiveFile: '$(Build.ArtifactStagingDirectory)/nib-$(target).tar.gz'
6347
- bash: |
6448
MY_TAG="$(Build.SourceBranch)"
6549
MY_TAG=${MY_TAG#refs/tags/}

0 commit comments

Comments
 (0)