mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-17 02:07:48 -04:00
Add CBMC proof-running GitHub Action (#924)
This commit adds a GitHub Action that runs the CBMC proofs upon every push and pull request. This is intended to replace the current CBMC CI.
This commit is contained in:
parent
9fa0fb7f0d
commit
408c3841ea
4 changed files with 238 additions and 4 deletions
|
@ -301,6 +301,13 @@ def main():
|
|||
if not args.no_standalone:
|
||||
run_build(args.parallel_jobs)
|
||||
|
||||
out_sym = pathlib.Path("/tmp")/"litani"/"runs"/"latest"
|
||||
out_dir = out_sym.resolve()
|
||||
|
||||
local_copy = pathlib.Path("output")/"latest"
|
||||
local_copy.parent.mkdir(exist_ok=True)
|
||||
local_copy.symlink_to(out_dir)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue