integration-test-local-windows.yml 1.01 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
10
11
12
13
14
15
16
17
  branches:
    include: [ master ]

jobs:
- job: windows
  pool: nni-it-windows
  timeoutInMinutes: 120

  steps:

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

  - 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
      python training_service/nnitest/run_tests.py --config training_service/config/integration_tests.yml --ts local `
        --exclude mnist-pytorch-local-gpu
    displayName: Integration test

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