mirror of
https://gitee.com/openharmony/arkcompiler_runtime_core
synced 2024-11-23 06:40:32 +00:00
!2275 Detect abc version changes
Merge pull request !2275 from OneYuan/check_version
This commit is contained in:
commit
7b8dd57bd3
@ -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
41
isa/check_version.py
Normal 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)
|
Loading…
Reference in New Issue
Block a user