add version check

pull/156/head
Peter Buchegger 2022-02-17 21:59:35 +01:00
rodzic 72fe5527f5
commit d6388ccc32
2 zmienionych plików z 46 dodań i 0 usunięć

Wyświetl plik

@ -3,6 +3,17 @@ name: Integreation Tests
on: [push, pull_request]
jobs:
version_check:
name: Version Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: check version
run: ./scripts/check_version.py
build:
name: Compile Firmware
runs-on: ubuntu-latest

Wyświetl plik

@ -0,0 +1,35 @@
#!/usr/bin/env python3
from datetime import date
today = date.today()
current_year = int(str(today.isocalendar()[0])[2:])
current_week = int(today.isocalendar()[1])
version = None
with open("src/LoRa_APRS_iGate.cpp") as f:
for line in f:
if line.startswith("#define VERSION"):
version = line.strip().split(" ")[2].replace('"', "")
version_split = version.split(".")
version_year = int(version_split[0])
version_week = int(version_split[1])
print(f"firmware version year: {version_year}")
print(f"firmware version week: {version_week}")
print(f"current year: {current_year}")
print(f"current week: {current_week}")
error = False
if version_year != current_year:
print("firmware version is not current year!")
error = True
if version_week != current_week:
print("firmware version is not current week!")
error = True
exit(error)