blob: be26c07b5ec99cde2de49d7f58062da0a5e92e89 [file] [log] [blame]
Roman Okhrimenko0142a682022-03-31 14:40:48 +03001#!/usr/bin/env python
2
3import shutil
4from os import remove
5from sys import argv
6
7shutil.rmtree('../cppcheck')
8shutil.rmtree('../coverity')
9remove('../../../.gitlab-ci.yml')
10remove('../BlinkyApp/BlinkyApp_CM4_Debug.launch')
11remove('../MCUBootApp/MCUBootApp_CM0P_Debug.launch')
12remove('../MCUBootApp/MCUBootApp_CYW20829_Debug.launch')
13remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_swap_single_psvp.json')
14remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_swap_multi2_psvp.json')
15remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_overwrite_single_psvp.json')
16remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_overwrite_multi2_psvp.json')
17remove('./cppcheck-htmlreport.py')
18remove('./rbc_policy_and_cert_revision_modify.py')
19remove('../platforms/CYW20829/cyw20829_psvp.h')
20remove(argv[0])
21
22print('Cleanup complete')