Fix ROARING_ARCH environment variable (#3644)

This commit is contained in:
Quentin Le Sceller 2021-06-10 09:42:04 -04:00 committed by GitHub
parent 4155555f80
commit 172143f7ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,8 +4,9 @@ steps:
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
- script: |
cargo clean
ROARING_ARCH=x86-64-v2
cargo build --release
env:
ROARING_ARCH: x86-64-v2
displayName: Build Release
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
- script: |