0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-13 01:08:11 +00:00
netdata_netdata/.github/scripts/get-go-version.py
Ilya Mashchenko 7fee1e5222
restructure go.d ()
* restruture go.d

* update gitignore

* update ci files

* update gen_docs_integrations.py

* update link in go.d conf files

* update go.d modules metadata files

* update metadata files

* update packaging

* add log files

* integrations commit

* update get-go-version.py

* go fmt

* fix packaging

* update go.d readme

---------

Co-authored-by: Fotis Voutsas <fotis@netdata.cloud>
2024-07-02 15:32:34 +03:00

39 lines
1,019 B
Python
Executable file

#!/usr/bin/env python3
import json
import os
import pathlib
from packaging.version import parse
SCRIPT_PATH = pathlib.Path(__file__).parents[0]
REPO_ROOT = SCRIPT_PATH.parents[1]
GO_SRC = REPO_ROOT / 'src' / 'go'
GITHUB_OUTPUT = pathlib.Path(os.environ['GITHUB_OUTPUT'])
version = parse('1.0.0')
modules = []
for modfile in GO_SRC.glob('**/go.mod'):
moddata = modfile.read_text()
for line in moddata.splitlines():
if line.startswith('go '):
version = max(version, parse(line.split()[1]))
break
for main in modfile.parent.glob('**/main.go'):
mainpath = main.relative_to(modfile.parent).parent
if 'examples' in mainpath.parts:
continue
modules.append({
'module': str(modfile.parent),
'version': str(version),
'build_target': f'github.com/netdata/netdata/go/plugins/{ str(mainpath) }/',
})
with GITHUB_OUTPUT.open('a') as f:
f.write(f'matrix={ json.dumps({"include": modules}) }\n')