Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6e82cde
Upgrade Python version from 3.6 to 3.10
NarayanThiru Dec 8, 2022
9789000
Upgrade to Python 3.10 from 3.6
NarayanThiru Dec 8, 2022
d2482ed
Switch PyLink to 1.9.4
NarayanThiru Dec 8, 2022
cb8e436
Use Python 3.7 for Static Analysis
NarayanThiru Dec 8, 2022
f61bdb7
Try unpinned version of PyLint
NarayanThiru Dec 8, 2022
5627349
Run pylint as a separate command
NarayanThiru Dec 8, 2022
41031cb
Update pylintrc (#204)
blazepower Dec 9, 2022
4052058
Update pylintrc
NarayanThiru Dec 9, 2022
111a915
Update k8s-custom-pipelines.yml
NarayanThiru Dec 9, 2022
be8fe53
Disable PyLint (#205)
NarayanThiru Dec 9, 2022
d242242
Disable PyLint on CI scripts
NarayanThiru Dec 9, 2022
dee0d12
Fixes for script errors
NarayanThiru Dec 9, 2022
df7c689
Upgrade Static Analysis Python version
NarayanThiru Dec 9, 2022
44cd927
Try 3.9, as 3.10 has breaking changes for Flake8
NarayanThiru Dec 9, 2022
0c17eaa
Remove version pinning for flake8
NarayanThiru Dec 9, 2022
742cc67
Update k8s-custom-pipelines.yml
NarayanThiru Dec 9, 2022
0edb505
Use Python 3.8.1 & flake8 6.0.0
NarayanThiru Dec 15, 2022
983f83b
Use Python 3.8 instead of 3.8.1
NarayanThiru Dec 15, 2022
01cdd73
Update k8s-custom-pipelines.yml
NarayanThiru Dec 15, 2022
bfbf7b1
Update .flake8
NarayanThiru Dec 15, 2022
0aeed27
Update source_code_static_analysis.py
NarayanThiru Dec 15, 2022
883738e
Update k8s-custom-pipelines.yml
NarayanThiru Dec 15, 2022
3b60b4b
Update k8s-custom-pipelines.yml
NarayanThiru Dec 15, 2022
8244203
Update k8s-custom-pipelines.yml
NarayanThiru Dec 15, 2022
80776f4
Update pool name in StaticAnalysis
NarayanThiru Dec 15, 2022
6025e83
Update k8s-custom-pipelines.yml
NarayanThiru Dec 15, 2022
2b974b2
Fix indentation
NarayanThiru Dec 15, 2022
04b5fbc
Update k8s-custom-pipelines.yml
NarayanThiru Dec 15, 2022
3408c95
Update k8s-custom-pipelines.yml
NarayanThiru Dec 15, 2022
7b5cd7f
Revert changes
NarayanThiru Dec 15, 2022
869fbd1
Revert changes
NarayanThiru Dec 15, 2022
656aabe
Revert changes to source_code_static_analysis.py
NarayanThiru Dec 15, 2022
38f3c8c
Update source_code_static_analysis.py
NarayanThiru Dec 15, 2022
e6a7d10
Revert changes
NarayanThiru Dec 15, 2022
47be2d2
Use Ubuntu 20.4 for BuiltTestPublish stage
NarayanThiru Dec 15, 2022
46c8c26
Switch to ubuntu-20.04 from latest
NarayanThiru Dec 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions testing/pipeline/k8s-custom-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ stages:
path: ./test/extensions/public/Flux.Tests.ps1
- job: BuildPublishExtension
pool:
vmImage: 'ubuntu-latest'
vmImage: 'ubuntu-20.04'
displayName: "Build and Publish the Extension Artifact"
variables:
CLI_REPO_PATH: $(Agent.BuildDirectory)/s
Expand Down Expand Up @@ -105,10 +105,11 @@ stages:

azdev verify license


- job: StaticAnalysis
displayName: "Static Analysis"
pool:
vmImage: 'ubuntu-latest'
vmImage: 'ubuntu-20.04'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.6'
Expand Down Expand Up @@ -209,4 +210,4 @@ stages:
displayName: "CLI Linter on Modified Extension"
env:
ADO_PULL_REQUEST_LATEST_COMMIT: $(System.PullRequest.SourceCommitId)
ADO_PULL_REQUEST_TARGET_BRANCH: $(System.PullRequest.TargetBranch)
ADO_PULL_REQUEST_TARGET_BRANCH: $(System.PullRequest.TargetBranch)
2 changes: 1 addition & 1 deletion testing/pipeline/templates/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ steps:

azdev --version
azdev setup -c ../azure-cli -r ${{ parameters.CLI_REPO_PATH }} -e $(EXTENSION_NAME)
azdev extension build $(EXTENSION_NAME)
azdev extension build $(EXTENSION_NAME)
4 changes: 2 additions & 2 deletions testing/pipeline/templates/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ parameters:
jobs:
- job: ${{ parameters.jobName}}
pool:
vmImage: 'ubuntu-latest'
vmImage: 'ubuntu-20.04'
variables:
${{ if eq(variables['IS_PRIVATE_BRANCH'], 'False') }}:
EXTENSION_NAME: "k8s-extension"
Expand Down Expand Up @@ -101,4 +101,4 @@ jobs:
inlineScript: |
.\Cleanup.ps1 -CI
workingDirectory: $(TEST_PATH)
condition: succeededOrFailed()
condition: succeededOrFailed()