Skip to content

Commit

Permalink
Make docker builds copy wesnothd to output/ too
Browse files Browse the repository at this point in the history
  • Loading branch information
loonycyborg committed Nov 7, 2019
1 parent d67e088 commit 755c505
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/dockerbuilds/mingw/Dockerfile
Expand Up @@ -17,4 +17,4 @@ RUN pacman-cross -S --noconfirm \

COPY get_dlls.py /scripts/get_dlls.py

ENTRYPOINT mkdir /build && cd /build && scons -j `nproc` arch=x86-64 prefix=/windows/mingw64 gtkdir=/windows/mingw64 host=x86_64-w64-mingw32 -Y /wesnoth && cp /build/wesnoth.exe /output/ && cd /output && python3 /scripts/get_dlls.py
ENTRYPOINT mkdir /build && cd /build && scons -j `nproc` arch=x86-64 prefix=/windows/mingw64 gtkdir=/windows/mingw64 host=x86_64-w64-mingw32 -Y /wesnoth && cp /build/wesnoth.exe /output/ && cp /build/wesnothd.exe /output/ && cd /output && python3 /scripts/get_dlls.py
2 changes: 1 addition & 1 deletion utils/dockerbuilds/steamrt/Dockerfile
Expand Up @@ -12,4 +12,4 @@ RUN cd /src/boost && ./bootstrap.sh --with-libraries=iostreams,regex,system,file
COPY start.sh /staging/start.sh
RUN mkdir /staging/lib64 && cp /lib/libicu*.so.* /lib/x86_64-linux-gnu/libhistory.so.6 /staging/lib64/

ENTRYPOINT mkdir /build && cd /build && scons -j `nproc` ctool=gcc-5 cxxtool=g++-5 boostdir=/usr/local/include boostlibdir=/usr/local/lib extra_flags_config=-lrt -Y /wesnoth && cp /build/wesnoth /output/ && cp -r /staging/* /output/
ENTRYPOINT mkdir /build && cd /build && scons -j `nproc` ctool=gcc-5 cxxtool=g++-5 boostdir=/usr/local/include boostlibdir=/usr/local/lib extra_flags_config=-lrt -Y /wesnoth && cp /build/wesnoth /output/ && cp /build/wesnothd /output/ && cp -r /staging/* /output/

0 comments on commit 755c505

Please sign in to comment.