integration-test-local-linux.yml 687 Bytes
Newer Older
1
2
3
trigger: none
pr: none
schedules:
Yuge Zhang's avatar
Yuge Zhang committed
4
- cron: 0 20 * * *
5
6
7
8
9
  branches:
    include: [ master ]

jobs:
- job: linux
Yuge Zhang's avatar
Yuge Zhang committed
10
  pool: nni-it-1es-11
11
  timeoutInMinutes: 60
12
13

  steps:
Yuge Zhang's avatar
Yuge Zhang committed
14
15
16
17
  - template: templates/fix-apt-1es.yml
    parameters:
      check_gpu: true

18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  - 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