Skip to content

{CI} Test version cal #8619

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions .github/workflows/AzdevLinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
steps:
- name: Checkout CLI extension repo
uses: actions/checkout@v4
with:
fetch-depth: 1
sparse-checkout: |
.github
- name: Azdev Env Setup
uses: ./.github/actions/env-setup
- name: Get Diff Files
Expand Down Expand Up @@ -46,6 +50,7 @@ jobs:
cat changed_files
cat changed_files | grep src/ | awk -F"src/" '{print $2}'| grep / | awk -F"/" '{print $1}' | sort | uniq
echo "changed_module_list=$(cat changed_files | grep src/ | awk -F"src/" '{print $2}'| grep / | awk -F"/" '{print $1}' | sort | uniq | xargs)" >> $GITHUB_ENV
git checkout "$base_branch_pre"/"$base_branch"
- name: Display PR Diff Modules
run: |
for mod in ${changed_module_list[@]}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/AzdevStyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
steps:
- name: Checkout CLI extension repo
uses: actions/checkout@v4
with:
fetch-depth: 1
sparse-checkout: |
.github
- name: Azdev Env Setup
uses: ./.github/actions/env-setup
- name: Get Diff Files
Expand Down Expand Up @@ -46,6 +50,7 @@ jobs:
cat changed_files
cat changed_files | grep src/ | awk -F"src/" '{print $2}'| grep / | awk -F"/" '{print $1}' | sort | uniq
echo "changed_module_list=$(cat changed_files | grep src/ | awk -F"src/" '{print $2}'| grep / | awk -F"/" '{print $1}' | sort | uniq | xargs)" >> $GITHUB_ENV
git checkout "$base_branch_pre"/"$base_branch"
- name: Display PR Diff Modules
run: |
for mod in ${changed_module_list[@]}
Expand Down
1 change: 1 addition & 0 deletions scripts/ci/release_version_cal.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
VERSION_PATCH_TAG, VERSION_STABLE_TAG, VERSION_PREVIEW_TAG, VERSION_PRE_TAG)
from util import get_index_data

print("testing scripts loading")
base_meta_path = os.environ.get('base_meta_path', None)
diff_meta_path = os.environ.get('diff_meta_path', None)
result_path = os.environ.get('result_path', None)
Expand Down
2 changes: 1 addition & 1 deletion src/communication/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '1.13.0'
VERSION = '1.13.3'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"azext.minCliCoreVersion": "2.61.0"
"azext.minCliCoreVersion": "2.61.0",
"azext.isPreview": true
}
2 changes: 1 addition & 1 deletion src/monitor-control-service/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '1.2.0'
VERSION = '2.0.0'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
from azure.cli.core.aaz import *


@register_command(
"network manager update",
)
# @register_command(
# "network manager update",
# )
class Update(AAZCommand):
"""Update a Network Manager.

Expand Down
2 changes: 1 addition & 1 deletion src/network-manager/azext_network_manager/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def load_command_table(self, _):

with self.command_group('network manager') as g:
g.custom_command('create', 'network_manager_create')
g.custom_command('update', 'network_manager_update')
# g.custom_command('update', 'network_manager_update')

with self.command_group('network manager connect-config') as g:
from .custom import ConnectConfigCreate, ConnectConfigUpdate
Expand Down
2 changes: 1 addition & 1 deletion src/network-manager/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '2.0.0'
VERSION = '2.1.0'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading