Skip to content

Commit

Permalink
Update permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
neubig committed Dec 29, 2024
1 parent 6f47919 commit eea6909
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions .github/scripts/check_version_consistency.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,58 +4,63 @@
import sys
from typing import Set, Tuple


def find_version_references(directory: str) -> Tuple[Set[str], Set[str]]:
openhands_versions = set()
runtime_versions = set()

version_pattern_openhands = re.compile(r'openhands:0\.(\d{2})')
version_pattern_runtime = re.compile(r'runtime:0\.(\d{2})')

for root, _, files in os.walk(directory):
# Skip .git directory
if '.git' in root:
continue

for file in files:
if file.endswith(('.md', '.yml', '.yaml', '.txt', '.html', '.py', '.js', '.ts')):
if file.endswith(
('.md', '.yml', '.yaml', '.txt', '.html', '.py', '.js', '.ts')
):
file_path = os.path.join(root, file)
try:
with open(file_path, 'r', encoding='utf-8') as f:
content = f.read()

# Find all openhands version references
matches = version_pattern_openhands.findall(content)
openhands_versions.update(matches)

# Find all runtime version references
matches = version_pattern_runtime.findall(content)
runtime_versions.update(matches)
except Exception as e:
print(f"Error reading {file_path}: {e}", file=sys.stderr)
print(f'Error reading {file_path}: {e}', file=sys.stderr)

return openhands_versions, runtime_versions


def main():
repo_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
openhands_versions, runtime_versions = find_version_references(repo_root)

exit_code = 0

if len(openhands_versions) > 1:
print("Error: Multiple openhands versions found:", file=sys.stderr)
print("Found versions:", sorted(openhands_versions), file=sys.stderr)
print('Error: Multiple openhands versions found:', file=sys.stderr)
print('Found versions:', sorted(openhands_versions), file=sys.stderr)
exit_code = 1
elif len(openhands_versions) == 0:
print("Warning: No openhands version references found", file=sys.stderr)
print('Warning: No openhands version references found', file=sys.stderr)

if len(runtime_versions) > 1:
print("Error: Multiple runtime versions found:", file=sys.stderr)
print("Found versions:", sorted(runtime_versions), file=sys.stderr)
print('Error: Multiple runtime versions found:', file=sys.stderr)
print('Found versions:', sorted(runtime_versions), file=sys.stderr)
exit_code = 1
elif len(runtime_versions) == 0:
print("Warning: No runtime version references found", file=sys.stderr)
print('Warning: No runtime version references found', file=sys.stderr)

sys.exit(exit_code)


if __name__ == '__main__':
main()

0 comments on commit eea6909

Please sign in to comment.