From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: qemu-devel@nongnu.org
Cc: "Thomas Huth" <thuth@redhat.com>,
"Kyle Evans" <kevans@freebsd.org>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
"Willian Rampazzo" <willianr@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Warner Losh" <imp@bsdimp.com>
Subject: [PATCH 4/4] gitlab-ci: Add ccache in $PATH and display statistics
Date: Mon, 10 May 2021 17:22:54 +0200 [thread overview]
Message-ID: <20210510152254.2543047-5-f4bug@amsat.org> (raw)
In-Reply-To: <20210510152254.2543047-1-f4bug@amsat.org>
If a runner has ccache installed, use it and display statistics
at the end of the build.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
.gitlab-ci.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a33e51bf453..d9a0252c54d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,13 +21,18 @@ include:
then
MAKE=gmake
JOBS=$(sysctl -n hw.ncpu)
+ PATH=/usr/local/libexec/ccache:$PATH
;
else
MAKE=make
JOBS=$(expr $(nproc) + 1)
+ PATH=/usr/lib/ccache:/usr/lib64/ccache:$PATH
;
fi
- echo "=== Using $JOBS simultaneous jobs ==="
+ - if command -v ccache > /dev/null ; then ccache --zero-stats ; fi
+ after_script:
+ - if command -v ccache > /dev/null ; then ccache --show-stats ; fi
.native_build_job_template:
stage: build
--
2.26.3
prev parent reply other threads:[~2021-05-10 15:26 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-10 15:22 [PATCH 0/4] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
2021-05-10 15:22 ` [PATCH 1/4] gitlab-ci: Extract &environment_variables template Philippe Mathieu-Daudé
2021-05-10 15:22 ` [PATCH 2/4] gitlab-ci: Adapt JOBS variable for FreeBSD runners Philippe Mathieu-Daudé
2021-05-10 15:22 ` [PATCH 3/4] gitlab-ci: Run GNU make via the $MAKE variable Philippe Mathieu-Daudé
2021-05-10 19:38 ` Philippe Mathieu-Daudé
2021-05-10 15:22 ` Philippe Mathieu-Daudé [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210510152254.2543047-5-f4bug@amsat.org \
--to=f4bug@amsat.org \
--cc=alex.bennee@linaro.org \
--cc=imp@bsdimp.com \
--cc=kevans@freebsd.org \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
--cc=wainersm@redhat.com \
--cc=willianr@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).