File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -134,12 +134,13 @@ def dockerfile_for_linux(output_file):
134134 else :
135135 if os .getenv ("CCACHE_REMOTE_ONLY" ) and os .getenv ("CCACHE_REMOTE_STORAGE" ):
136136 df += """
137- ENV CCACHE_REMOTE_ONLY="true"
138- ENV CCACHE_REMOTE_STORAGE="{}"
139- ENV CMAKE_CXX_COMPILER_LAUNCHER="ccache"
140- ENV CMAKE_C_COMPILER_LAUNCHER="ccache"
141- ENV CMAKE_CUDA_COMPILER_LAUNCHER="ccache"
142- ENV VERBOSE=1
137+ ENV CCACHE_REMOTE_ONLY="true" \\
138+ CCACHE_REMOTE_STORAGE="{}" \\
139+ CMAKE_CXX_COMPILER_LAUNCHER="ccache" \\
140+ CMAKE_C_COMPILER_LAUNCHER="ccache" \\
141+ CMAKE_CUDA_COMPILER_LAUNCHER="ccache" \\
142+ VERBOSE=1
143+
143144RUN apt-get update \\
144145 && apt-get install -y --no-install-recommends ccache && ccache -p \\
145146 && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments