From bbfb32b13627a2b3b3aa300df597df217312c162 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Wed, 6 Nov 2019 16:13:39 -0800 Subject: [PATCH] build: store the ninja log for our builds (#21011) --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 03a214fd5a..d9ad1a2ccf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -643,6 +643,11 @@ step-ninja-summary: &step-ninja-summary command: | python depot_tools/post_build_ninja_summary.py -C src/out/Default +step-ninja-report: &step-ninja-report + store_artifacts: + path: src/out/Default/.ninja_log + destination: ninja_log + # Checkout Steps step-generate-deps-hash: &step-generate-deps-hash run: @@ -993,10 +998,11 @@ steps-electron-build-with-inline-checkout-for-tests: &steps-electron-build-with- # Electron app - *step-electron-build + - *step-ninja-summary + - *step-ninja-report - *step-maybe-electron-dist-strip - *step-electron-dist-build - *step-electron-dist-store - - *step-ninja-summary # Native test targets - *step-native-unittests-build