azure-steps.yml 330 B

123456789101112
  1. steps:
  2. - checkout: self
  3. submodules: true
  4. - template: azure-install-rust.yml
  5. - bash: ./ci/run.sh $TARGET
  6. condition: ne( variables['Agent.OS'], 'Linux' )
  7. displayName: Run test script
  8. - bash: ./ci/run-docker.sh $TARGET
  9. condition: eq( variables['Agent.OS'], 'Linux' )
  10. displayName: Run docker test script