mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 02:42:19 +08:00
feat: add openim mongo logic
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
e367c04534
commit
d3dd4b26a8
20
.github/workflows/e2e-test.yml
vendored
20
.github/workflows/e2e-test.yml
vendored
@ -92,16 +92,30 @@ jobs:
|
|||||||
|
|
||||||
- name: Exec OpenIM API test
|
- name: Exec OpenIM API test
|
||||||
run: |
|
run: |
|
||||||
sudo make test-api
|
sudo make test-api | tee /tmp/test-api.md
|
||||||
|
|
||||||
- name: Exec OpenIM E2E test
|
- name: Exec OpenIM E2E test
|
||||||
run: |
|
run: |
|
||||||
sudo make test-e2e
|
sudo make test-e2e | tee /tmp/test-api.md
|
||||||
|
|
||||||
- name: Exec OpenIM System uninstall
|
- name: Exec OpenIM System uninstall
|
||||||
run: |
|
run: |
|
||||||
sudo ./scripts/install/install.sh -u
|
sudo ./scripts/install/install.sh -u
|
||||||
|
|
||||||
|
- name: Comment PR with file
|
||||||
|
uses: thollander/actions-comment-pull-request@v2
|
||||||
|
with:
|
||||||
|
filePath: /tmp/test-api.md
|
||||||
|
comment_tag: nrt_file
|
||||||
|
reactions: eyes, rocket
|
||||||
|
mode: recreate
|
||||||
|
|
||||||
|
- name: Check outputs
|
||||||
|
run: |
|
||||||
|
echo "id : ${{ steps.nrt_message.outputs.id }}"
|
||||||
|
echo "body : ${{ steps.nrt_message.outputs.body }}"
|
||||||
|
echo "html_url : ${{ steps.nrt_message.outputs.html_url }}"
|
||||||
|
|
||||||
- name: gobenchdata publish
|
- name: gobenchdata publish
|
||||||
uses: bobheadxi/gobenchdata@v1
|
uses: bobheadxi/gobenchdata@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
@ -1,3 +1,17 @@
|
|||||||
|
# Copyright © 2024 OpenIM. All rights reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# General Configuration
|
# General Configuration
|
||||||
# This section contains general configuration options for the entire environment.
|
# This section contains general configuration options for the entire environment.
|
||||||
|
|||||||
@ -1,4 +1,18 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# Copyright © 2024 OpenIM. All rights reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
#
|
#
|
||||||
# OpenIM Docker Deployment Script
|
# OpenIM Docker Deployment Script
|
||||||
#
|
#
|
||||||
|
|||||||
@ -129,7 +129,7 @@ FIND := find . ! -path './utils/*' ! -path './vendor/*' ! -path './third_party/*
|
|||||||
XARGS := xargs -r --no-run-if-empty
|
XARGS := xargs -r --no-run-if-empty
|
||||||
|
|
||||||
# Linux command settings-CODE DIRS Copyright
|
# Linux command settings-CODE DIRS Copyright
|
||||||
CODE_DIRS := $(ROOT_DIR)/pkg $(ROOT_DIR)/cmd $(ROOT_DIR)/config $(ROOT_DIR)/.docker-compose_cfg $(ROOT_DIR)/internal $(ROOT_DIR)/scripts $(ROOT_DIR)/test $(ROOT_DIR)/.github $(ROOT_DIR)/build $(ROOT_DIR)/tools $(ROOT_DIR)/deployments
|
CODE_DIRS := $(ROOT_DIR)/pkg $(ROOT_DIR)/cmd $(ROOT_DIR)/config $(ROOT_DIR)/internal $(ROOT_DIR)/scripts $(ROOT_DIR)/test $(ROOT_DIR)/.github $(ROOT_DIR)/build $(ROOT_DIR)/tools $(ROOT_DIR)/deployments
|
||||||
FINDS := find $(CODE_DIRS)
|
FINDS := find $(CODE_DIRS)
|
||||||
|
|
||||||
# Makefile settings: Select different behaviors by determining whether V option is set
|
# Makefile settings: Select different behaviors by determining whether V option is set
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user