Feature/windows ci (#76)
* close with params * ... * different generator * core size = 1 * disable more tests to get something working on windows * try to enable another test on windows * enable all OS * set proper version of linux * another try * try again with just env variables * Revert "core size = 1" This reverts commit29af74bba6
. * add windows and mac * Revert "close with params" This reverts commit6bb00b6788
.
This commit is contained in:
committed by
GitHub
parent
27bf1684cb
commit
c01c53c5c7
@ -1,24 +1,22 @@
|
||||
# Build time
|
||||
FROM ubuntu:xenial as build
|
||||
FROM fedora:30 as build
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
RUN apt-get update
|
||||
RUN apt-get -y install wget
|
||||
RUN yum install -y gcc-g++
|
||||
RUN yum install -y cmake
|
||||
RUN yum install -y make
|
||||
RUN yum install -y openssl-devel
|
||||
|
||||
RUN yum install -y wget
|
||||
RUN mkdir -p /tmp/cmake
|
||||
WORKDIR /tmp/cmake
|
||||
RUN wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0-Linux-x86_64.tar.gz
|
||||
RUN tar zxf cmake-3.14.0-Linux-x86_64.tar.gz
|
||||
|
||||
RUN apt-get -y install g++
|
||||
RUN apt-get -y install libssl-dev
|
||||
RUN apt-get -y install libz-dev
|
||||
RUN apt-get -y install make
|
||||
RUN apt-get -y install python
|
||||
|
||||
COPY . .
|
||||
|
||||
ARG CMAKE_BIN_PATH=/tmp/cmake/cmake-3.14.0-Linux-x86_64/bin
|
||||
ENV PATH="${CMAKE_BIN_PATH}:${PATH}"
|
||||
|
||||
# RUN ["make"]
|
||||
RUN yum install -y python
|
||||
RUN yum install -y libtsan
|
||||
|
||||
COPY . .
|
||||
RUN ["make", "test"]
|
||||
# RUN ["make"]
|
||||
|
Reference in New Issue
Block a user