mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
03ea524188
This is in preparation for porting `GRegex` to libpcre2, which is happening in !2529. It’s a big port, though, and specially rebuilding the CI images to add libpcre2 for it is a pain. Add libpcre2, and then !2529 can drop the old libpcre dependencies when the port lands. Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #1085
12 lines
385 B
Docker
12 lines
385 B
Docker
FROM registry.gitlab.gnome.org/gnome/glib/fedora:v17
|
|
|
|
ARG COVERITY_SCAN_PROJECT_NAME
|
|
ARG COVERITY_SCAN_TOKEN
|
|
|
|
RUN curl https://scan.coverity.com/download/cxx/linux64 \
|
|
-o /tmp/cov-analysis-linux64.tgz \
|
|
--form project="${COVERITY_SCAN_PROJECT_NAME}" \
|
|
--form token="${COVERITY_SCAN_TOKEN}" \
|
|
&& tar xfz /tmp/cov-analysis-linux64.tgz \
|
|
&& rm /tmp/cov-analysis-linux64.tgz
|