From bc1f227541c958ea6ab8dc19ce337c751db1612a Mon Sep 17 00:00:00 2001 From: Tao Lin <831611+mirguest@users.noreply.github.com> Date: Sat, 26 Dec 2020 10:36:30 +0800 Subject: [PATCH] To reduce the compilation time, use ninja only. At the self-hosted, it is possible to run job in parallel, so use ninja to build the software automatically. --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24a4b708..50d11a4d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,8 @@ jobs: strategy: matrix: LCG_RELEASE: [LCG_98, KEY4HEP_STACK] - CEPCSW_BLDTOOL: [make, ninja] + # CEPCSW_BLDTOOL: [make, ninja] + CEPCSW_BLDTOOL: [ninja] # Steps represent a sequence of tasks that will be executed as part of the job steps: -- GitLab