Another Update Package Yaaay #9

Merged
gaisser merged 21 commits from mueller/yet-another-update-package-nice into master 2021-05-25 14:55:42 +02:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit ff5f3b2aae - Show all commits

View File

@ -6,9 +6,8 @@ RUN apt-get install -y cmake g++
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN rm -rf build-hosted
RUN set -ex; \
rm -rf build-hosted; \
mkdir build-hosted; \
cd build-hosted; \
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=host ..;

View File

@ -6,9 +6,8 @@ RUN apt-get install -y cmake g++
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN rm -rf build-linux
RUN set -ex; \
rm -rf build-linux; \
mkdir build-linux; \
cd build-linux; \
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=linux ..;