Skip to content

Commit

Permalink
Add cargo clean to win release (#276)
Browse files Browse the repository at this point in the history
* Add cargo clean to windows release

* Cargo clean
  • Loading branch information
quentinlesceller authored and yeastplume committed Dec 10, 2019
1 parent aa88bc2 commit ac93ab8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .ci/windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ steps:
- script: 'cargo test --all'
displayName: Cargo Test All
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
- script: 'cargo clean'
displayName: Cargo Clean
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
- script: 'cargo build --release'
displayName: Build Release
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
Expand Down

0 comments on commit ac93ab8

Please sign in to comment.