!2275 Detect abc version changes

Merge pull request !2275 from OneYuan/check_version
This commit is contained in:
openharmony_ci 2024-08-19 09:42:23 +00:00 committed by Gitee
commit 7b8dd57bd3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 52 additions and 2 deletions

View File

@ -1,7 +1,10 @@
### **描述** ### Issue
### 描述/Description
### **Issue** ### 原因/Reason
### 修改方案/Scheme
### **[测试项](https://gitee.com/openharmony/arkcompiler_runtime_core/wikis)** ### **[测试项](https://gitee.com/openharmony/arkcompiler_runtime_core/wikis)**
@ -50,3 +53,9 @@
1. UT 1. UT
2. 测试脚本 2. 测试脚本
##### **八、指令/abc格式修改自检需联系下方邮箱同步至相关领域**
- [ ] 涉及,已同步
- [ ] 不涉及
**Email:** chenqiuyao@huawei.com

41
isa/check_version.py Normal file
View File

@ -0,0 +1,41 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import yaml
current_version = "12.0.6.0"
script_dir = os.path.dirname(os.path.realpath(__file__))
isa_file_path = os.path.join(script_dir, 'isa.yaml')
def check_version(yaml_file, cur_version):
try:
with open(yaml_file, 'r') as file:
data = yaml.safe_load(file)
file_version = data.get('version')
if file_version == cur_version:
print("No change in version!")
else:
print(f"[IMPORTANT] Version change detected ({cur_version} -> {file_version}), please contact the relevant domain.")
except Exception as e:
print(f"Error reading file: {e}")
check_version(isa_file_path, current_version)