integration-test-local-windows.yml 1.1 KB
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: windows
Yuge Zhang's avatar
Yuge Zhang committed
10
  pool: nni-it-1es-windows
11
12
13
  timeoutInMinutes: 120

  steps:
14
15
16
  - template: templates/check-gpu-status.yml
    parameters:
      platform: windows
17
18
19
20

  - template: templates/install-dependencies.yml
    parameters:
      platform: windows
21
      python_env: noop
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

  - template: templates/install-nni.yml
    parameters:
      user: false

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

  - powershell: |
      python test/vso_tools/ssl_patch.py
    displayName: SSL patch

  - powershell: |
      cd test
      python -m pytest ut
      echo "TODO: TypeScript UT"
    displayName: Unit test
    continueOnError: true

  # TODO: the agent has no GPU driver
  # We can't install it on-the-fly because we can't elevate the permission here.
  - powershell: |
      cd test
44
      python training_service/nnitest/run_tests.py --config training_service/config/integration_tests.yml --ts local
45
46
47
    displayName: Integration test

  - template: templates/save-crashed-info.yml
Yuge Zhang's avatar
Yuge Zhang committed
48
49
    parameters:
      training_service: local