This is an automated email from the ASF dual-hosted git repository.

jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git


The following commit(s) were added to refs/heads/master by this push:
     new df0ccb3671f workflow fix
df0ccb3671f is described below

commit df0ccb3671f9bd18be0a2ec5dda1967fa81765e2
Author: jiafeng.zhang <[email protected]>
AuthorDate: Wed Sep 21 09:19:32 2022 +0800

    workflow fix
---
 .github/workflows/cron-deploy-website.yml            |  4 ++++
 .github/workflows/manual-deploy-website.yml          |  3 +++
 .github/workflows/manual-deploy.yml                  |  4 ++++
 community/developer-guide/be-vscode-dev.md           | 20 +++++++++++++++++---
 community/developer-guide/fe-idea-dev.md             |  6 ------
 community/how-to-contribute/how-to-contribute.md     |  4 ++--
 community/release-and-verify/release-complete.md     |  2 ++
 community/team.md                                    |  9 ++++++++-
 .../current/developer-guide/be-vscode-dev.md         | 20 +++++++++++++++++---
 .../current/developer-guide/fe-eclipse-dev.md        |  2 +-
 .../current/developer-guide/fe-idea-dev.md           |  6 ------
 .../current/release-and-verify/release-complete.md   |  2 ++
 .../current/team.md                                  |  9 ++++++++-
 13 files changed, 68 insertions(+), 23 deletions(-)

diff --git a/.github/workflows/cron-deploy-website.yml 
b/.github/workflows/cron-deploy-website.yml
index 6797b192715..8eb8cdd2167 100644
--- a/.github/workflows/cron-deploy-website.yml
+++ b/.github/workflows/cron-deploy-website.yml
@@ -31,6 +31,10 @@ jobs:
         cp -R doris/docs/zh-CN/docs/* 
i18n/zh-CN/docusaurus-plugin-content-docs/version-dev/
         cp -R doris/docs/dev.json 
i18n/zh-CN/docusaurus-plugin-content-docs/version-dev.json
 
+        cp -R doris/docs/en/community/* community/
+        cp -R doris/docs/zh-CN/community/* 
i18n/zh-CN/docusaurus-plugin-content-docs-community/current/
+        cp -R doris/docs/sidebarsCommunity.json .
+
         cp -R doris/docs/images static/
         npm install -g yarn
         yarn cache clean
diff --git a/.github/workflows/manual-deploy-website.yml 
b/.github/workflows/manual-deploy-website.yml
index 6eb1b77eccc..b44cb2613a8 100644
--- a/.github/workflows/manual-deploy-website.yml
+++ b/.github/workflows/manual-deploy-website.yml
@@ -33,6 +33,9 @@ jobs:
         mkdir i18n/zh-CN/docusaurus-plugin-content-docs/version-dev
         cp -R doris/docs/zh-CN/docs/* 
i18n/zh-CN/docusaurus-plugin-content-docs/version-dev/
         cp -R doris/docs/dev.json 
i18n/zh-CN/docusaurus-plugin-content-docs/version-dev.json
+        cp -R doris/docs/en/community/* community/
+        cp -R doris/docs/zh-CN/community/* 
i18n/zh-CN/docusaurus-plugin-content-docs-community/current/
+        cp -R doris/docs/sidebarsCommunity.json .
 
         cp -R doris/docs/images static/
         npm install -g yarn
diff --git a/.github/workflows/manual-deploy.yml 
b/.github/workflows/manual-deploy.yml
index 9fc8d310fa3..5f17347f816 100644
--- a/.github/workflows/manual-deploy.yml
+++ b/.github/workflows/manual-deploy.yml
@@ -34,6 +34,10 @@ jobs:
         cp -R doris/docs/zh-CN/docs/* 
i18n/zh-CN/docusaurus-plugin-content-docs/version-dev/
         cp -R doris/docs/dev.json 
i18n/zh-CN/docusaurus-plugin-content-docs/version-dev.json
 
+        cp -R doris/docs/en/community/* community/
+        cp -R doris/docs/zh-CN/community/* 
i18n/zh-CN/docusaurus-plugin-content-docs-community/current/
+        cp -R doris/docs/sidebarsCommunity.json .
+
         cp -R doris/docs/images static/
         npm install -g yarn
         yarn cache clean
diff --git a/community/developer-guide/be-vscode-dev.md 
b/community/developer-guide/be-vscode-dev.md
index f6875c6b99e..0c71d6f5757 100644
--- a/community/developer-guide/be-vscode-dev.md
+++ b/community/developer-guide/be-vscode-dev.md
@@ -48,9 +48,9 @@ sudo apt install gcc-10 g++-10
 sudo apt-get install autoconf automake libtool autopoint
 ```
 
-4. install : libssl-dev
+4. install : openssl libssl-dev
 ```
-sudo apt install -y libssl-dev
+sudo apt install -y openssl libssl-dev
 ```
 
 ## Compile
@@ -91,7 +91,7 @@ Note: This compilation has the following instructions:
 
 If nothing happens, the compilation should be successful, and the final 
deployment file will be output to the /home/workspace/doris/output/ directory. 
If you still encounter other problems, you can refer to the doris installation 
document http://doris.apache.org.
 
-## Deployment and debugging
+## Deployment and debugging(GDB)
 
 1. Authorize be compilation result files
 
@@ -280,3 +280,17 @@ An example of a complete launch.json is as follows:
 
 ![](/images/image-20210618091006146.png)
 
+## Debugging(LLDB)
+
+lldb's attach mode is fast than gdb,and the usage is similar to gdb. we should 
install plugin `CodeLLDB`, then add config to launch:
+```json
+{
+    "name": "CodeLLDB attach",
+    "type": "lldb",
+    "request": "attach",
+    "program": "${workspaceFolder}/output/be/lib/doris_be",
+    "pid":"${command:pickMyProcess}"
+}
+```
+
+It should be noted that this method requires the system `glibc` version to be 
`2.18+`. you can refer [Get VSCode CodeLLDB plugin work on CentOS 
7](https://gist.github.com/JaySon-Huang/63dcc6c011feb5bd6deb1ef0cf1a9b96) to 
make plugin work。
\ No newline at end of file
diff --git a/community/developer-guide/fe-idea-dev.md 
b/community/developer-guide/fe-idea-dev.md
index 2c52b7add06..40fc8ccf06c 100644
--- a/community/developer-guide/fe-idea-dev.md
+++ b/community/developer-guide/fe-idea-dev.md
@@ -76,12 +76,6 @@ under the License.
    ```
    mvn clean install -DskipTests
    ```
-
-   If it's MAC M1, run following command
-
-    ```
-    mvn clean install -DskipTests -Dos.arch=x86_64
-    ```
    
    You can also use IDE embedded GUI tools to run maven command to generate 
sources
 
diff --git a/community/how-to-contribute/how-to-contribute.md 
b/community/how-to-contribute/how-to-contribute.md
index bdd3d03d4ed..b4566c23f47 100644
--- a/community/how-to-contribute/how-to-contribute.md
+++ b/community/how-to-contribute/how-to-contribute.md
@@ -26,9 +26,9 @@ under the License.
 
 # Contribute to Doris
 
-Thank you very much for your interest in the Doris project. We welcome your 
suggestions, comments (including criticisms), comments and contributions to the 
Doris project.
+Thank you very much for your interest in the Doris project. We welcome your 
suggestions, comments (including criticisms) and contributions to the Doris 
project.
 
-Your suggestions, comments and comments on Doris can be made directly through 
GitHub's [Issues](https://github.com/apache/doris/issues/new/choose).
+Your suggestions, comments and contributions on Doris can be made directly 
through GitHub's [Issues](https://github.com/apache/doris/issues/new/choose).
 
 There are many ways to participate in and contribute to Doris projects: code 
implementation, test writing, process tool improvement, document improvement, 
and so on. Any contribution will be welcomed and you will be added to the list 
of contributors. Further, with sufficient contributions, you will have the 
opportunity to become a Committer of Apache with Apache mailbox and be included 
in the list of [Apache 
Committers](http://people.apache.org/committer-index.html).
 
diff --git a/community/release-and-verify/release-complete.md 
b/community/release-and-verify/release-complete.md
index 4eb75e0a9e3..6582be182b7 100644
--- a/community/release-and-verify/release-complete.md
+++ b/community/release-and-verify/release-complete.md
@@ -33,6 +33,8 @@ The steps in this document follow after the release has been 
voted on and approv
 When the official release poll is successful, send the [Result] email first, 
then prepare the release package.
 Copy the source package, signature file and hash file from the corresponding 
folder of the previous release under dev to another directory 1.xx, note that 
the file name should not be rcxx (you can rename, but do not recalculate the 
signature, the hash can be recalculated, the result will not change)
 
+> Only PMC members have permission to operate this step.
+
 ```
 From:
 https://dist.apache.org/repos/dist/dev/doris/
diff --git a/community/team.md b/community/team.md
index 27d8901d422..6512bd917e8 100644
--- a/community/team.md
+++ b/community/team.md
@@ -48,7 +48,7 @@ We'd like to thank the following committers to the Apache 
Doris project who have
 | [yangzhg](https://people.apache.org/committer-index.html#yangzhg) | yangzhg  
           | Zhengguo Yang |
 | [weizuo](https://people.apache.org/committer-index.html#weizuo) | weizuo93   
         | Zuo Wei       |
 
-## Committers (38)
+## Committers (45)
 
 (the listing excludes PMC members above)
 
@@ -77,6 +77,13 @@ We'd like to thank the following committers to the Apache 
Doris project who have
 | [wyf](https://people.apache.org/committer-index.html#wyf)    | wuyunfeng     
   | Yunfeng Wu     |
 | [zenoyang](https://people.apache.org/committer-index.html#zenoyang)    |  
zenoyang       | Zeno Yang     |
 | [zshao](https://people.apache.org/committer-index.html#zshao)    | zshao     
   | Zheng Shao |
+| [morrysnow](https://people.apache.org/committer-index.html#morrysnow)    | 
morrySnow  | Wenxin Zhang |
+| [jakevin](https://people.apache.org/committer-index.html#jakevin)    | 
jackwener | Jie Wen |
+| [gabriellee](https://people.apache.org/committer-index.html#gabriellee)    | 
Gabriel39 | Wenqiang Li |
+| [stalary](https://people.apache.org/committer-index.html#stalary)    | 
stalary | Rongqian Li |
+| [cambyzju](https://people.apache.org/committer-index.html#cambyzju)    | 
cambyzju | Xiaoli Zhu  |
+| [adonisling](https://people.apache.org/committer-index.html#adonisling)    | 
adonis0147  | Cong Ling |
+| [pengxiangyu](https://people.apache.org/committer-index.html#pengxiangyu)    
| pengxiangyu | Xiangyu Peng |
 
 ## Contributors
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/be-vscode-dev.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/be-vscode-dev.md
index bd2134f5f13..4bcaf5d4073 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/be-vscode-dev.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/be-vscode-dev.md
@@ -45,10 +45,10 @@ sudo apt install gcc-10 g++-10
 sudo apt-get install autoconf automake libtool autopoint
 ```
 
-4. 安装 openssl-devel
+4. 安装 openssl libssl-dev
 
 ```
-sudo apt install -y openssl-devel
+sudo apt install -y openssl libssl-dev
 ```
 
 ## 编译
@@ -90,7 +90,7 @@ cd /home/workspace/doris
 
 如果不出意外,应该会编译成功,最终的部署文件将产出到 /home/workspace/doris/output/ 目录下。如果还遇到其他问题,可以参照 
doris 的安装文档 http://doris.apache.org。
 
-## 部署调试
+## 部署调试(GDB)
 
 1. 给 be 编译结果文件授权
 
@@ -278,3 +278,17 @@ ps -ef | grep palo*
     下面就可以开始你的 Doris DEBUG 之旅了
 
 ![](/images/image-20210618091006146.png)
+
+## 调试(LLDB)
+
+lldb的attach比gdb更快,使用方式和gdb类似。vscode需要安装的插件改为`CodeLLDB`,然后在launch中加入如下配置:
+```json
+{
+    "name": "CodeLLDB attach",
+    "type": "lldb",
+    "request": "attach",
+    "program": "${workspaceFolder}/output/be/lib/doris_be",
+    "pid":"${command:pickMyProcess}"
+}
+```
+需要注意的是,此方式要求系统`glibc`版本为`2.18+`。如果没有则可以参考 
[如何使CodeLLDB在CentOS7下工作](https://gist.github.com/JaySon-Huang/63dcc6c011feb5bd6deb1ef0cf1a9b96)
 安装高版本glibc并将其链接到插件。
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-eclipse-dev.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-eclipse-dev.md
index b3179e6d084..dc2b155982b 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-eclipse-dev.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-eclipse-dev.md
@@ -38,7 +38,7 @@ FE 模块需要部分生成代码,如 Thrift、Protobuf, jflex, cup 等框架
 
 #### windows下开发获取生成代码步骤
 
-1. 在 Linux 下, 进入 fe 目录下执行以下命令:
+1. 在 Linux 下, 进入 `fe 目录下执行以下命令:
 
    ```
    mvn  generate-sources
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-idea-dev.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-idea-dev.md
index 14cf02b24af..b4f032e12ea 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-idea-dev.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/developer-guide/fe-idea-dev.md
@@ -69,12 +69,6 @@ JDK1.8+, IntelliJ IDEA
     ```
     cd fe && mvn clean install -DskipTests
     ```
-    
-    如果是mac m1版,则执行:
-   
-    ```
-    cd fe && mvn clean install -DskipTests -Dos.arch=x86_64
-    ```
 
 或者通过图形界面运行 maven 命令生成
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-complete.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-complete.md
index 6c5ca12cc2a..f64e4f57a34 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-complete.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-complete.md
@@ -33,6 +33,8 @@ under the License.
 当正式发布投票成功后,先发[Result]邮件,然后就准备 release package。
 将之前在dev下发布的对应文件夹下的源码包、签名文件和hash文件拷贝到另一个目录 1.1.0,注意文件名字中不要rcxx 
(可以rename,但不要重新计算签名,hash可以重新计算,结果不会变)
 
+> 这一步仅PMC成员有权限操作。
+
 ```
 From:
 https://dist.apache.org/repos/dist/dev/doris/
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/team.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/team.md
index 751bce0a5a3..032934c0223 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/team.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/team.md
@@ -48,7 +48,7 @@ under the License.
 | [yangzhg](https://people.apache.org/committer-index.html#yangzhg) | yangzhg  
           | Zhengguo Yang |
 | [weizuo](https://people.apache.org/committer-index.html#weizuo) | weizuo93   
         | Zuo Wei       |
 
-## Committers (38)
+## Committers (45)
 
 (如下列表不包含上述 PMC 成员)
 
@@ -77,6 +77,13 @@ under the License.
 | [wyf](https://people.apache.org/committer-index.html#wyf)    | wuyunfeng     
   | Yunfeng Wu     |
 | [zenoyang](https://people.apache.org/committer-index.html#zenoyang)    | 
zenoyang  | Zeno Yang     |
 | [zshao](https://people.apache.org/committer-index.html#zshao)    | zshao | 
Zheng Shao |
+| [morrysnow](https://people.apache.org/committer-index.html#morrysnow)    | 
morrySnow  | Wenxin Zhang |
+| [jakevin](https://people.apache.org/committer-index.html#jakevin)    | 
jackwener | Jie Wen |
+| [gabriellee](https://people.apache.org/committer-index.html#gabriellee)    | 
Gabriel39 | Wenqiang Li |
+| [stalary](https://people.apache.org/committer-index.html#stalary)    | 
stalary | Rongqian Li |
+| [cambyzju](https://people.apache.org/committer-index.html#cambyzju)    | 
cambyzju | Xiaoli Zhu  |
+| [adonisling](https://people.apache.org/committer-index.html#adonisling)    | 
adonis0147  | Cong Ling |
+| [pengxiangyu](https://people.apache.org/committer-index.html#pengxiangyu)    
| pengxiangyu | Xiangyu Peng |
 
 ## Contributors
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to