Bug 1761974 - Handle ccache 'Uncacheable/Unsupported code directive' r=mhentges

Differential Revision: https://phabricator.services.mozilla.com/D142335
This commit is contained in:
Alexandre Lissy 2022-03-29 14:44:53 +00:00
Родитель ad3237f8a4
Коммит fbae530eb5
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -921,6 +921,7 @@ class CCacheStats(object):
("bad_args", "Uncacheable/Bad compiler arguments"),
("autoconf", "Uncacheable/Autoconf compile/link"),
("no_input", "Uncacheable/No input file"),
("unsupported_code_directive", "Uncacheable/Unsupported code directive"),
("num_cleanups", "Primary storage/Cleanups"),
("cache_files", "Primary storage/Files"),
# Cache size is reported in GB, see

Просмотреть файл

@ -329,6 +329,7 @@ Uncacheable:
Compilation failed: 49
No input file: 9
Preprocessing failed: 90
Unsupported code directive: 1
""".format(
timestamp=time.strftime("%c")
)