2019-05-09 20:15:10 +03:00
|
|
|
steps:
|
2020-11-23 19:58:59 +03:00
|
|
|
- script: |
|
2021-03-22 20:31:43 +03:00
|
|
|
refreshenv
|
|
|
|
LIBCLANG_PATH=C:\Program Files\LLVM\lib
|
|
|
|
LLVM_CONFIG_PATH=C:\Program Files\LLVM\bin\llvm-config
|
|
|
|
ROARING_ARCH=x86-64-v2
|
|
|
|
cargo test --all
|
2019-05-09 20:15:10 +03:00
|
|
|
displayName: Windows Cargo Test
|
|
|
|
condition: and(eq( variables['Agent.OS'], 'Windows_NT' ), eq( variables['CI_JOB'], 'test-all' ))
|
2021-03-22 20:31:43 +03:00
|
|
|
- script: 'ROARING_ARCH=x86-64-v2 cargo test --all'
|
2019-05-09 20:15:10 +03:00
|
|
|
displayName: macOS Cargo Test
|
|
|
|
condition: and(eq( variables['Agent.OS'], 'Darwin' ), eq( variables['CI_JOB'], 'test-all' ))
|
2021-03-22 20:31:43 +03:00
|
|
|
- script: 'ROARING_ARCH=x86-64-v2 .ci/general-jobs'
|
2019-05-09 20:15:10 +03:00
|
|
|
displayName: Linux Cargo Test
|
|
|
|
condition: eq( variables['Agent.OS'], 'Linux' )
|