From 9ea232a74c6bdf1f9a67349a3f59ea27e5ea41ea Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Wed, 23 Sep 2020 13:30:28 -0700 Subject: [PATCH 1/2] Update ubuntu images for GPU issue fix --- build/ci/templates/jobs/build_compile.yml | 8 ++++---- build/ci/templates/jobs/coverage.yml | 2 +- build/ci/vscode-python-ci-manual.yaml | 6 +++--- build/ci/vscode-python-ci.yaml | 4 ++-- build/ci/vscode-python-nightly-ci.yaml | 8 ++++---- build/ci/vscode-python-nightly-flake-ci.yaml | 2 +- build/ci/vscode-python-pr-validation.yaml | 4 ++-- 7 files changed, 17 insertions(+), 17 deletions(-) diff --git a/build/ci/templates/jobs/build_compile.yml b/build/ci/templates/jobs/build_compile.yml index 13b6915f7e3d..69d384afd529 100644 --- a/build/ci/templates/jobs/build_compile.yml +++ b/build/ci/templates/jobs/build_compile.yml @@ -4,25 +4,25 @@ jobs: - job: Compile pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: ../steps/compile.yml - job: Build pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: ../steps/build.yml - job: Dependencies pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: ../steps/dependencies.yml - job: Hygiene pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: ../steps/initialization.yml parameters: diff --git a/build/ci/templates/jobs/coverage.yml b/build/ci/templates/jobs/coverage.yml index 50fb4af733e0..375619c2019c 100644 --- a/build/ci/templates/jobs/coverage.yml +++ b/build/ci/templates/jobs/coverage.yml @@ -1,7 +1,7 @@ jobs: - job: Coverage pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' variables: TestsToRun: 'testUnitTests' steps: diff --git a/build/ci/vscode-python-ci-manual.yaml b/build/ci/vscode-python-ci-manual.yaml index bad74182082c..9a41600aca19 100644 --- a/build/ci/vscode-python-ci-manual.yaml +++ b/build/ci/vscode-python-ci-manual.yaml @@ -64,7 +64,7 @@ stages: NeedsIPythonReqs: true #maxParallel: 3 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml @@ -91,7 +91,7 @@ stages: NeedsPythonTestReqs: true #maxParallel: 3 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml @@ -128,7 +128,7 @@ stages: NeedsPythonTestReqs: true #maxParallel: 3 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-ci.yaml b/build/ci/vscode-python-ci.yaml index 31d40da97d76..c410b1ce9df7 100644 --- a/build/ci/vscode-python-ci.yaml +++ b/build/ci/vscode-python-ci.yaml @@ -72,7 +72,7 @@ stages: NeedsIPythonReqs: true maxParallel: 2 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml @@ -100,7 +100,7 @@ stages: NeedsPythonTestReqs: true maxParallel: 2 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-nightly-ci.yaml b/build/ci/vscode-python-nightly-ci.yaml index 228909a49162..234cd089343f 100644 --- a/build/ci/vscode-python-nightly-ci.yaml +++ b/build/ci/vscode-python-nightly-ci.yaml @@ -68,7 +68,7 @@ stages: NeedsIPythonReqs: true maxParallel: 1 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml @@ -108,7 +108,7 @@ stages: # Note: We only run the smoke tests with the latest Python release. maxParallel: 1 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml @@ -148,7 +148,7 @@ stages: # Note: We only run the smoke tests with the latest Python release. maxParallel: 1 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml @@ -184,7 +184,7 @@ stages: # Note: We only run the smoke tests with the latest Python release. maxParallel: 1 pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-nightly-flake-ci.yaml b/build/ci/vscode-python-nightly-flake-ci.yaml index db168f479927..43462e3ebdca 100644 --- a/build/ci/vscode-python-nightly-flake-ci.yaml +++ b/build/ci/vscode-python-nightly-flake-ci.yaml @@ -46,7 +46,7 @@ stages: NeedsPythonFunctionalReqs: true VSCODE_PYTHON_ROLLING: true pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-pr-validation.yaml b/build/ci/vscode-python-pr-validation.yaml index fa817bf379b5..09c74e4b401c 100644 --- a/build/ci/vscode-python-pr-validation.yaml +++ b/build/ci/vscode-python-pr-validation.yaml @@ -63,7 +63,7 @@ stages: NeedsPythonTestReqs: true NeedsIPythonReqs: true pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml @@ -82,7 +82,7 @@ stages: NeedsPythonTestReqs: true NeedsPythonFunctionalReqs: true pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - template: templates/test_phases.yml From 27d802f37db3c27170db64d495002b96708652a6 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Wed, 23 Sep 2020 14:46:42 -0700 Subject: [PATCH 2/2] Try with ubuntu-20.04 --- build/ci/templates/jobs/build_compile.yml | 8 ++++---- build/ci/templates/jobs/coverage.yml | 2 +- build/ci/vscode-python-ci-manual.yaml | 6 +++--- build/ci/vscode-python-ci.yaml | 4 ++-- build/ci/vscode-python-nightly-ci.yaml | 8 ++++---- build/ci/vscode-python-nightly-flake-ci.yaml | 2 +- build/ci/vscode-python-pr-validation.yaml | 4 ++-- 7 files changed, 17 insertions(+), 17 deletions(-) diff --git a/build/ci/templates/jobs/build_compile.yml b/build/ci/templates/jobs/build_compile.yml index 69d384afd529..8a258787070e 100644 --- a/build/ci/templates/jobs/build_compile.yml +++ b/build/ci/templates/jobs/build_compile.yml @@ -4,25 +4,25 @@ jobs: - job: Compile pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: ../steps/compile.yml - job: Build pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: ../steps/build.yml - job: Dependencies pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: ../steps/dependencies.yml - job: Hygiene pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: ../steps/initialization.yml parameters: diff --git a/build/ci/templates/jobs/coverage.yml b/build/ci/templates/jobs/coverage.yml index 375619c2019c..26914271f5f0 100644 --- a/build/ci/templates/jobs/coverage.yml +++ b/build/ci/templates/jobs/coverage.yml @@ -1,7 +1,7 @@ jobs: - job: Coverage pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' variables: TestsToRun: 'testUnitTests' steps: diff --git a/build/ci/vscode-python-ci-manual.yaml b/build/ci/vscode-python-ci-manual.yaml index 9a41600aca19..b16482e851be 100644 --- a/build/ci/vscode-python-ci-manual.yaml +++ b/build/ci/vscode-python-ci-manual.yaml @@ -64,7 +64,7 @@ stages: NeedsIPythonReqs: true #maxParallel: 3 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml @@ -91,7 +91,7 @@ stages: NeedsPythonTestReqs: true #maxParallel: 3 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml @@ -128,7 +128,7 @@ stages: NeedsPythonTestReqs: true #maxParallel: 3 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-ci.yaml b/build/ci/vscode-python-ci.yaml index c410b1ce9df7..a53aea5170db 100644 --- a/build/ci/vscode-python-ci.yaml +++ b/build/ci/vscode-python-ci.yaml @@ -72,7 +72,7 @@ stages: NeedsIPythonReqs: true maxParallel: 2 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml @@ -100,7 +100,7 @@ stages: NeedsPythonTestReqs: true maxParallel: 2 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-nightly-ci.yaml b/build/ci/vscode-python-nightly-ci.yaml index 234cd089343f..aa3bc2d007cb 100644 --- a/build/ci/vscode-python-nightly-ci.yaml +++ b/build/ci/vscode-python-nightly-ci.yaml @@ -68,7 +68,7 @@ stages: NeedsIPythonReqs: true maxParallel: 1 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml @@ -108,7 +108,7 @@ stages: # Note: We only run the smoke tests with the latest Python release. maxParallel: 1 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml @@ -148,7 +148,7 @@ stages: # Note: We only run the smoke tests with the latest Python release. maxParallel: 1 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml @@ -184,7 +184,7 @@ stages: # Note: We only run the smoke tests with the latest Python release. maxParallel: 1 pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-nightly-flake-ci.yaml b/build/ci/vscode-python-nightly-flake-ci.yaml index 43462e3ebdca..6c7a7b3e73b0 100644 --- a/build/ci/vscode-python-nightly-flake-ci.yaml +++ b/build/ci/vscode-python-nightly-flake-ci.yaml @@ -46,7 +46,7 @@ stages: NeedsPythonFunctionalReqs: true VSCODE_PYTHON_ROLLING: true pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml diff --git a/build/ci/vscode-python-pr-validation.yaml b/build/ci/vscode-python-pr-validation.yaml index 09c74e4b401c..38042886a163 100644 --- a/build/ci/vscode-python-pr-validation.yaml +++ b/build/ci/vscode-python-pr-validation.yaml @@ -63,7 +63,7 @@ stages: NeedsPythonTestReqs: true NeedsIPythonReqs: true pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml @@ -82,7 +82,7 @@ stages: NeedsPythonTestReqs: true NeedsPythonFunctionalReqs: true pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: templates/test_phases.yml