integration-test-local-linux.yml 601 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
trigger: none
pr: none
schedules:
- cron: 0 16 * * *
  branches:
    include: [ master ]

jobs:
- job: linux
  pool: nni-it
11
  timeoutInMinutes: 60
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

  steps:
  - template: templates/install-dependencies.yml
    parameters:
      platform: ubuntu-latest-gpu
      python_env: venv

  - template: templates/install-nni.yml

  - template: templates/install-customized-tuner.yml

  - script: |
      cd test
      python training_service/nnitest/run_tests.py --config training_service/config/integration_tests.yml --ts local
    displayName: Integration test

  - template: templates/save-crashed-info.yml