diff --git a/.github/workflows/feishu-notify.yml b/.github/workflows/feishu-notify.yml deleted file mode 100644 index 42b256c..0000000 --- a/.github/workflows/feishu-notify.yml +++ /dev/null @@ -1,57 +0,0 @@ -# Source file from https://github.com/bytedance/gopkg/blob/develop/.github/workflows/feishu-notify.yml. Thanks to the original developers. -name: Feishu Notification - -on: - pull_request: - types: [opened] - issues: - types: [opened] - -jobs: - pr-opened: - name: Pull Request Opened Notification - if: ${{ github.event_name == 'pull_request' && github.event.action == 'opened' }} - runs-on: ubuntu-latest - steps: - - name: Send Feishu Message - env: - ACTIONS_FEISHU_TAG: v1.3.1 - INPUT_WEBHOOK: ${{ secrets.FEISHU_ROBOT_WEBHOOK_URL }} - INPUT_MESSAGE_TYPE: post - INPUT_TITLE: 🎉New Pull Request - INPUT_CONTENT: | - @${{ github.event.pull_request.user.login }} opened pull request #${{ github.event.pull_request.number }}: - - ${{ github.event.pull_request.title }} - - 🫱See: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}. - run: | - sudo apt update - sudo apt install wget -y - wget -q https://github.com/xiachufang/actions-feishu/releases/download/${{ env.ACTIONS_FEISHU_TAG }}/linux-amd64-actions-feishu.tar.gz - tar zxf linux-amd64-actions-feishu.tar.gz feishu - ./feishu - - issues-opened: - name: Issue Opened Notification - if: ${{ github.event_name == 'issues' && github.event.action == 'opened' }} - runs-on: ubuntu-latest - steps: - - name: Send Feishu Message - env: - ACTIONS_FEISHU_TAG: v1.3.1 - INPUT_WEBHOOK: ${{ secrets.FEISHU_ROBOT_WEBHOOK_URL }} - INPUT_MESSAGE_TYPE: post - INPUT_TITLE: 🐛New Issue - INPUT_CONTENT: | - @${{ github.event.issue.user.login }} opened issue #${{ github.event.issue.number }}: - - ${{ github.event.issue.title }} - - 🫱See: https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }}. - run: | - sudo apt update - sudo apt install wget -y - wget -q https://github.com/xiachufang/actions-feishu/releases/download/${{ env.ACTIONS_FEISHU_TAG }}/linux-amd64-actions-feishu.tar.gz - tar zxf linux-amd64-actions-feishu.tar.gz feishu - ./feishu diff --git a/000-cbdb-sandbox/README.md b/000-cbdb-sandbox/README.md index 6f78e82..fd71c16 100644 --- a/000-cbdb-sandbox/README.md +++ b/000-cbdb-sandbox/README.md @@ -19,7 +19,7 @@ Make sure that your environment meets the following requirements: ## Build the Sandbox -This section introduces how to set up the Docker container in which the source code of Cloudberry Database v1.5.1 (released in [Cloudberry Database Release Page](https://github.com/cloudberrydb/cloudberrydb/releases)) will be compiled. In this CentOS 7.9 Docker container, a single-node cluster will be initialized with one coordinator and two segments. Both x86 and ARM CPUs (including Apple chips) are supported. +This section introduces how to set up the Docker container in which the source code of the latest Cloudberry Database (released in [Cloudberry Database Release Page](https://github.com/cloudberrydb/cloudberrydb/releases)) will be compiled. In this CentOS 7.9 Docker container, a single-node cluster will be initialized with one coordinator and two segments. Both x86 and ARM CPUs (including Apple chips) are supported. Build steps: diff --git a/000-cbdb-sandbox/cbdb_Dockerfile b/000-cbdb-sandbox/cbdb_Dockerfile index 2721c3a..ebaa1f4 100644 --- a/000-cbdb-sandbox/cbdb_Dockerfile +++ b/000-cbdb-sandbox/cbdb_Dockerfile @@ -47,11 +47,11 @@ RUN cat /tmp/sysctl.conf.add >> /etc/sysctl.conf \ RUN yum install -y python3-devel python3-pip; yum clean all RUN cd /tmp/ \ - && unzip -d /tmp /tmp/cloudberrydb-1.5.1.zip \ - && cd /tmp/cloudberrydb-1.5.1 \ + && unzip -d /tmp /tmp/cloudberrydb-1.5.2.zip \ + && cd /tmp/cloudberrydb-1.5.2 \ && pip3 install -i https://mirrors.aliyun.com/pypi/simple -r python-dependencies.txt -RUN cd /tmp/cloudberrydb-1.5.1 \ +RUN cd /tmp/cloudberrydb-1.5.2 \ && source scl_source enable devtoolset-10 \ && ./configure --with-perl --with-python --with-libxml --with-gssapi --prefix=/usr/local/cloudberry-db \ && make -j8 \ diff --git a/000-cbdb-sandbox/configs/cloudberrydb-1.5.1.zip b/000-cbdb-sandbox/configs/cloudberrydb-1.5.2.zip similarity index 80% rename from 000-cbdb-sandbox/configs/cloudberrydb-1.5.1.zip rename to 000-cbdb-sandbox/configs/cloudberrydb-1.5.2.zip index d538ec4..77ddd09 100644 Binary files a/000-cbdb-sandbox/configs/cloudberrydb-1.5.1.zip and b/000-cbdb-sandbox/configs/cloudberrydb-1.5.2.zip differ