Detect abc version changes

Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/IAJAG9

Signed-off-by: chenyiyuan <chenyiyuan6@huawei.com>
Change-Id: Ie7e4677a4a4f845fcebc1240501ae17a6ea5d247
This commit is contained in:
chenyiyuan 2024-08-12 10:10:28 +08:00
parent 20aa463e44
commit e979b81eaa
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)**
@ -50,3 +53,9 @@
1. UT
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)