simple and works

This commit is contained in:
Robin Müller 2021-05-20 20:53:59 +02:00
parent 9462246861
commit 0b81b25587
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 7 additions and 24 deletions

View File

@ -1,33 +1,16 @@
FROM gcc:11
RUN apt-get update
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y cmake
WORKDIR /usr/src
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN git clone https://egit.irs.uni-stuttgart.de/fsfw/fsfw_example_public.git; \
cd fsfw_example_public; \
git submodule init; \
git submodule sync; \
git submodule update --init --recursive
RUN rm -rf build-hosted
# Set to exit on failed command and build FSFW example with Linux OSAL
RUN set -ex; \
cd fsfw_example_public; \
mkdir build-linux; \
cd build-linux; \
cmake -DOS_FSFW=linux ..; \
cmake --build . -j; \
cd ..
# Set to exit on failed command and build FSFW example with Host OSAL
RUN set -ex; \
cd fsfw_example_public; \
RUN set -ex; \
mkdir build-hosted; \
cd build-hosted; \
cmake -DOS_FSFW=host ..; \
cmake --build . -j; \
cd ..
ENTRYPOINT ["/bin/sh"]
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=host ..;
ENTRYPOINT ["sh", "-c", "cmake --build build-hosted -j"]