https://github.com/mupq/pqm4
Revision 0dd7285734760c7ac074a3875b565b65bc35b562 authored by Richard Petri on 01 October 2021, 16:15:28 UTC, committed by Richard Petri on 01 October 2021, 16:15:28 UTC
1 parent 0197728
Raw File
Tip revision: 0dd7285734760c7ac074a3875b565b65bc35b562 authored by Richard Petri on 01 October 2021, 16:15:28 UTC
Update mupq
Tip revision: 0dd7285
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import parse_arguments, get_platform
from mupq import mupq


if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        mupq.BuildAll(settings).test_all(rest)
back to top