This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new fdaa99d471 GH-36543: [CI][Docs] Use -g1 instead of -g for building
docs (#36576)
fdaa99d471 is described below
commit fdaa99d47112d30bebcdb948e0f19107272c9c83
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sun Jul 9 18:12:56 2023 +0900
GH-36543: [CI][Docs] Use -g1 instead of -g for building docs (#36576)
### Rationale for this change
Because we don't need to run GDB plugin test for the build.
### What changes are included in this PR?
Specify `-g1` explicitly.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* Closes: #36543
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
docker-compose.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/docker-compose.yml b/docker-compose.yml
index 8185c9118a..5a1a79dc3e 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1732,8 +1732,10 @@ services:
base: ${REPO}:${ARCH}-ubuntu-${UBUNTU}-python-3
environment:
<<: [*common, *ccache]
- ARROW_JAVA_SKIP_GIT_PLUGIN:
ARROW_CUDA: "ON"
+ ARROW_CXX_FLAGS_DEBUG: "-g1"
+ ARROW_C_FLAGS_DEBUG: "-g1"
+ ARROW_JAVA_SKIP_GIT_PLUGIN:
ARROW_SUBSTRAIT: "ON"
BUILD_DOCS_C_GLIB: "ON"
BUILD_DOCS_CPP: "ON"