grin/.ci/test.yml
Antioch Peverell 5282ecb12f
try and call refreshenv before running tests on windows (#3498)
* try and call refreshenv before running tests on windows

* try again
2020-11-23 16:58:59 +00:00

11 lines
No EOL
473 B
YAML

steps:
- script: |
refreshenv && cargo test --all
displayName: Windows Cargo Test
condition: and(eq( variables['Agent.OS'], 'Windows_NT' ), eq( variables['CI_JOB'], 'test-all' ))
- script: 'cargo test --all'
displayName: macOS Cargo Test
condition: and(eq( variables['Agent.OS'], 'Darwin' ), eq( variables['CI_JOB'], 'test-all' ))
- script: '.ci/general-jobs'
displayName: Linux Cargo Test
condition: eq( variables['Agent.OS'], 'Linux' )