restructure CI into build + smoketest pipeline (#6)

This commit is contained in:
Adeeb Shihadeh
2026-02-22 17:52:42 -08:00
committed by GitHub
parent f78b4d9e85
commit 453518f608
3 changed files with 73 additions and 32 deletions

View File

@@ -19,3 +19,9 @@ def _run_objcopy():
def _run_size():
_run("arm-none-eabi-size")
def smoketest():
import subprocess
gcc = os.path.join(TOOLCHAIN_DIR, "bin", "arm-none-eabi-gcc")
subprocess.run([gcc, "--version"], check=True)