2019-05-03 18:08:14 +03:00
|
|
|
steps:
|
2021-04-07 18:09:44 +03:00
|
|
|
- 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
|
2019-05-03 18:08:14 +03:00
|
|
|
displayName: Windows Cargo Test
|
|
|
|
condition: and(eq( variables['Agent.OS'], 'Windows_NT' ), eq( variables['CI_JOB'], 'test-all' ))
|
2021-04-05 12:14:10 +03:00
|
|
|
- script: 'ROARING_ARCH=x86-64-v2 cargo test --all'
|
2019-05-03 18:08:14 +03:00
|
|
|
displayName: macOS Cargo Test
|
|
|
|
condition: and(eq( variables['Agent.OS'], 'Darwin' ), eq( variables['CI_JOB'], 'test-all' ))
|
2021-04-05 12:14:10 +03:00
|
|
|
- script: 'ROARING_ARCH=x86-64-v2 .ci/general-jobs'
|
2019-05-03 18:08:14 +03:00
|
|
|
displayName: Linux Cargo Test
|
|
|
|
condition: eq( variables['Agent.OS'], 'Linux' )
|