full-test-nas.yml 1.84 KB
Newer Older
1
trigger: none
J-shang's avatar
J-shang committed
2

3
schedules:
Yuge Zhang's avatar
Yuge Zhang committed
4
- cron: 0 18 * * *
5
6
7
  branches:
    include: [ master ]

J-shang's avatar
J-shang committed
8
9
10
11
12
13
14
15
resources:
  repositories:
    - repository: azpfilter
      type: github
      name: microsoft/azure-pipeline-filter
      endpoint: github-filter-connection

variables:
Yuge Zhang's avatar
Yuge Zhang committed
16
  filter.modified.globs: 'examples/nas/**,nni/algorithms/nas/**,nni/nas/**,nni/retiarii/**,pipelines/full-test-nas.yml,test/ut/nas/**,test/algo/nas/**'
J-shang's avatar
J-shang committed
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  filter.prbody.heading: '#### Test Options'
  filter.prbody.optionIndex: 2

stages:
- stage: filter
  jobs:
  - job: check
    pool:
      vmImage: ubuntu-latest
    steps:
    - template: templates/stage-filter.yml

- stage: test
  # dependencies.$(StageName).outputs['$(JobName).$(TaskName).$(VariableName)']
  condition: and(succeeded(), ne(dependencies.filter.outputs['check.execution.skipsubsequent'], 'true'))
  jobs:
  - job: linux
    pool: nni-it
    timeoutInMinutes: 60
36

J-shang's avatar
J-shang committed
37
38
39
40
41
    steps:
    - template: templates/install-dependencies.yml
      parameters:
        platform: ubuntu-latest-gpu
        python_env: venv
42

J-shang's avatar
J-shang committed
43
    - template: templates/install-nni.yml
44

Yuge Zhang's avatar
Yuge Zhang committed
45
46
    - template: templates/download-test-data.yml

J-shang's avatar
J-shang committed
47
48
    - script: |
        cd test
Yuge Zhang's avatar
Yuge Zhang committed
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
        python -m pytest algo/nas
      displayName: NAS test

  - job: windows
    pool: nni-it-windows
    timeoutInMinutes: 60

    steps:
    - template: templates/install-dependencies.yml
      parameters:
        platform: windows
        python_env: noop

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

    # NOTE: Data needs to be downloaded if Windows has GPU.
    # Also, the download template needs to be updated with powershell syntax.
    # - template: templates/download-test-data.yml

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

    - powershell: |
        cd test
        python -m pytest algo/nas
J-shang's avatar
J-shang committed
77
      displayName: NAS test