azure-pipelines.yml 555 Bytes
Newer Older
1
2
3
4
5
6
7
8
pool:
  vmImage: 'Ubuntu 16.04'
strategy:
  matrix:
    Python36:
      PYTHON_VERSION: '3.6'

steps:
Gems Guo's avatar
Gems Guo committed
9
10
11
  - script: python3 -m pip install --upgrade pip setuptools
    displayName: 'Install python tools'
  - script: |
QuanluZhang's avatar
QuanluZhang committed
12
      source install.sh
Gems Guo's avatar
Gems Guo committed
13
14
    displayName: 'Install dependencies'
  - script: |
Zejun Lin's avatar
Zejun Lin committed
15
      cd test
QuanluZhang's avatar
QuanluZhang committed
16
      export PATH=$HOME/.local/bin:$PATH
Zejun Lin's avatar
Zejun Lin committed
17
18
19
20
21
22
23
      python3 naive_test.py
    displayName: 'Integration tests'
  - script: |
      cd test
      export PATH=$HOME/.local/bin:$PATH
      python3 sdk_tuner_test.py
    displayName: 'Built-in tuner tests'