full-test-nas.yml 1.92 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
  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
J-shang's avatar
J-shang committed
34
35
36
    # move back after we complete the 1ES pool...
    pool:
      vmImage: ubuntu-latest
J-shang's avatar
J-shang committed
37
    timeoutInMinutes: 60
38

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

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

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

J-shang's avatar
J-shang committed
48
49
    - script: |
        cd test
Yuge Zhang's avatar
Yuge Zhang committed
50
51
52
53
        python -m pytest algo/nas
      displayName: NAS test

  - job: windows
J-shang's avatar
J-shang committed
54
55
56
    # move back after we complete the 1ES pool...
    pool:
      vmImage: windows-latest
Yuge Zhang's avatar
Yuge Zhang committed
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
    timeoutInMinutes: 60

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

    - 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
79
      displayName: NAS test