Skip to content

Commit

Permalink
Skip headers check for docker builds
Browse files Browse the repository at this point in the history
This check is handled by a different job in CI, docker needs not to
duplicate it especially when running without ccache
  • Loading branch information
janisozaur committed Oct 18, 2024
1 parent 3808c3a commit 976f76a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion develop/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WORKDIR /openrct2
RUN git -c http.sslVerify=false clone --depth 1 -b $OPENRCT2_REF https://github.com/OpenRCT2/OpenRCT2 . \
&& mkdir build \
&& cd build \
&& cmake .. -G Ninja -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/openrct2-install/usr -DDISABLE_GUI=ON \
&& cmake .. -G Ninja -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/openrct2-install/usr -DDISABLE_GUI=ON -DENABLE_HEADERS_CHECK=OFF \
&& ninja -k0 install \
&& rm /openrct2-install/usr/lib/libopenrct2.a \
# HACK due to issue in cmakelists, move content from cli
Expand Down

0 comments on commit 976f76a

Please sign in to comment.