123456789101112 |
- steps:
- - checkout: self
- submodules: true
- - template: azure-install-rust.yml
- - bash: ./ci/run.sh $TARGET
- condition: ne( variables['Agent.OS'], 'Linux' )
- displayName: Run test script
- - bash: ./ci/run-docker.sh $TARGET
- condition: eq( variables['Agent.OS'], 'Linux' )
- displayName: Run docker test script
|