Skip to content

Commit

Permalink
Format bintar CMAKE command
Browse files Browse the repository at this point in the history
Make the command be more readable.
Add explicit usage of ccache.
  • Loading branch information
RazvanLiviuVarzaru committed Jan 21, 2025
1 parent 1f271aa commit 349916d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion master-docker-nonstandard/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,15 @@ f_bintar.addStep(
"sh",
"-c",
util.Interpolate(
'cmake . -DWITH_READLINE=1 -DCURSES_NEED_NCURSES=1 -DBUILD_CONFIG=mysql_release -DWITH_SSL=bundled -DPLATFORM=linux-systemd && make -j%(kw:jobs)s package',
"""cmake . \\
-DWITH_READLINE=1 \\
-DCURSES_NEED_NCURSES=1 \\
-DBUILD_CONFIG=mysql_release \\
-DCMAKE_C_COMPILER_LAUNCHER=ccache \\
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \\
-DWITH_SSL=bundled \\
-DPLATFORM=linux-systemd \\
&& make -j%(kw:jobs)s package""",
perf_schema=util.Property("perf_schema", default="YES"),
build_type=util.Property("build_type", default="RelWithDebInfo"),
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"),
Expand Down

0 comments on commit 349916d

Please sign in to comment.