mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-20 19:11:09 +03:00
5ccca2d231
* Fix Windows CI * move cargo clean to be consistent with node
58 lines
3 KiB
YAML
58 lines
3 KiB
YAML
steps:
|
||
- script: 'refreshenv && cargo test --all'
|
||
env:
|
||
LIBCLANG_PATH: C:\Program Files\LLVM\lib
|
||
LLVM_CONFIG_PATH: C:\Program Files\LLVM\bin\llvm-config
|
||
ROARING_ARCH: x86-64-v2
|
||
displayName: Cargo Test All
|
||
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
|
||
- script: 'refreshenv && cargo clean && cargo build --release'
|
||
env:
|
||
LIBCLANG_PATH: C:\Program Files\LLVM\lib
|
||
LLVM_CONFIG_PATH: C:\Program Files\LLVM\bin\llvm-config
|
||
ROARING_ARCH: x86-64-v2
|
||
displayName: Build Release
|
||
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
|
||
- script: |
|
||
SET MY_TAG=$(Build.SourceBranch)
|
||
SET MY_TAG=%MY_TAG:~10%
|
||
echo %MY_TAG%
|
||
echo %PLATFORM%
|
||
echo ##vso[task.setvariable variable=build.my_tag]%MY_TAG%
|
||
echo ##vso[task.setvariable variable=build.platform]%PLATFORM%
|
||
displayName: "Create my tag variable"
|
||
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
|
||
- task: CopyFiles@2
|
||
displayName: Copy assets
|
||
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
|
||
inputs:
|
||
sourceFolder: '$(Build.SourcesDirectory)\target\release'
|
||
contents: 'grin-wallet.exe'
|
||
targetFolder: '$(Build.BinariesDirectory)\grin-wallet'
|
||
- task: ArchiveFiles@2
|
||
displayName: Gather assets
|
||
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
|
||
inputs:
|
||
rootFolderOrFile: '$(Build.BinariesDirectory)\grin-wallet'
|
||
archiveType: 'zip'
|
||
archiveFile: '$(Build.ArtifactStagingDirectory)\grin-wallet-$(build.my_tag)-$(build.platform).zip'
|
||
- script: |
|
||
powershell -Command "cd $(Build.ArtifactStagingDirectory); get-filehash -algorithm sha256 grin-wallet-$(build.my_tag)-$(build.platform).zip | Format-List | Out-String | ForEach-Object { $_.Trim() } > grin-wallet-$(build.my_tag)-$(build.platform)-sha256sum.txt"
|
||
displayName: Create Checksum
|
||
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
|
||
- task: GithubRelease@0
|
||
displayName: Github release
|
||
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
|
||
inputs:
|
||
gitHubConnection: 'ignopeverell'
|
||
repositoryName: 'mimblewimble/grin-wallet'
|
||
action: 'edit'
|
||
target: '$(build.sourceVersion)'
|
||
tagSource: 'manual'
|
||
tag: '$(build.my_tag)'
|
||
assets: |
|
||
$(Build.ArtifactStagingDirectory)\grin-wallet-$(build.my_tag)-$(build.platform).zip
|
||
$(Build.ArtifactStagingDirectory)\grin-wallet-$(build.my_tag)-$(build.platform)-sha256sum.txt
|
||
title: '$(build.my_tag)'
|
||
assetUploadMode: 'replace'
|
||
addChangeLog: true
|