Commit cc68df1c authored by Dominik Charousset's avatar Dominik Charousset

Merge branch 'topic/jenkins'

parents a0808914 0f2874fc
FROM centos:6
RUN yum update -y \
&& yum install -y centos-release-scl \
&& yum install -y epel-release \
&& yum update -y \
&& yum clean all
RUN yum install -y \
cmake3 \
devtoolset-7 \
devtoolset-7-libasan-devel \
devtoolset-7-libubsan-devel \
git \
make \
openssl-devel \
&& yum clean all
ENV CXX=/opt/rh/devtoolset-7/root/usr/bin/g++
FROM debian:buster FROM debian:10
RUN apt update -y && \ RUN apt update -y && \
apt upgrade -y apt upgrade -y
RUN apt install -y \ RUN apt install -y \
cmake \ cmake \
g++-8 \ g++ \
git \ git \
libssl-dev \ libssl-dev \
make \ make \
&& apt autoclean && apt autoclean
ENV CXX=/usr/bin/g++-8
...@@ -27,12 +27,6 @@ config = [ ...@@ -27,12 +27,6 @@ config = [
// Our build matrix. Keys are the operating system labels and values are build configurations. // Our build matrix. Keys are the operating system labels and values are build configurations.
buildMatrix: [ buildMatrix: [
// Various Linux builds for debug and release. // Various Linux builds for debug and release.
['centos-6', [
numCores: 4,
tags: ['docker'],
builds: ['debug', 'release'],
extraDebugFlags: ['CAF_SANITIZERS:STRING=address,undefined'],
]],
['centos-7', [ ['centos-7', [
numCores: 4, numCores: 4,
tags: ['docker'], tags: ['docker'],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment