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
14 lines
No EOL
661 B
YAML
14 lines
No EOL
661 B
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: Windows Cargo Test
|
|
condition: and(eq( variables['Agent.OS'], 'Windows_NT' ), eq( variables['CI_JOB'], 'test-all' ))
|
|
- script: 'ROARING_ARCH=x86-64-v2 cargo test --all'
|
|
displayName: macOS Cargo Test
|
|
condition: and(eq( variables['Agent.OS'], 'Darwin' ), eq( variables['CI_JOB'], 'test-all' ))
|
|
- script: 'ROARING_ARCH=x86-64-v2 .ci/general-jobs'
|
|
displayName: Linux Cargo Test
|
|
condition: eq( variables['Agent.OS'], 'Linux' ) |