debian-forge/assemblers/org.osbuild.noop
Tom Gundersen fa7a5b985e travis: add an osbuild test
Actually test the tools. This simply runs a noop stage followed by
a noop assembler.

Signed-off-by: Tom Gundersen <teg@jklm.no>
2019-07-31 01:34:31 +02:00

12 lines
304 B
Python
Executable file

#!/usr/bin/python3
import json
import sys
def main(_tree, _output_dir, options):
print("Not doing anything with these options:", json.dumps(options))
if __name__ == '__main__':
args = json.load(sys.stdin)
r = main(args["tree"], args["output_dir"], args.get("options", {}))
sys.exit(r)