mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-17 03:27:02 +08:00
feat: add test changelog file
Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
This commit is contained in:
parent
957625ddb7
commit
31e0f79dc3
8
.github/sync.yml
vendored
8
.github/sync.yml
vendored
@ -75,15 +75,15 @@ OpenIMSDK/OpenKF:
|
|||||||
dest: .github/.codecov.yml
|
dest: .github/.codecov.yml
|
||||||
replace: false
|
replace: false
|
||||||
|
|
||||||
openim-sigs/openim-docker:
|
openim-docker/openim-docker:
|
||||||
- source: ./config
|
- source: ./config
|
||||||
dest: ./openim-server/config
|
dest: ./openim-server/main/config
|
||||||
replace: true
|
replace: true
|
||||||
- source: ./docs
|
- source: ./docs
|
||||||
dest: ./openim-server/docs
|
dest: ./openim-server/main/docs
|
||||||
replace: true
|
replace: true
|
||||||
- source: ./scripts
|
- source: ./scripts
|
||||||
dest: ./openim-server/scripts
|
dest: ./openim-server/main/scripts
|
||||||
replace: true
|
replace: true
|
||||||
|
|
||||||
group:
|
group:
|
||||||
|
|||||||
2
.github/workflows/golangci-lint.yml
vendored
2
.github/workflows/golangci-lint.yml
vendored
@ -45,7 +45,7 @@ jobs:
|
|||||||
args: --timeout=30m --config=/scripts/golangci.yml # --issues-exit-code=0
|
args: --timeout=30m --config=/scripts/golangci.yml # --issues-exit-code=0
|
||||||
|
|
||||||
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
||||||
# only-new-issues: true
|
only-new-issues: true
|
||||||
|
|
||||||
# Optional:The mode to install golangci-lint. It can be 'binary' or 'goinstall'.
|
# Optional:The mode to install golangci-lint. It can be 'binary' or 'goinstall'.
|
||||||
install-mode: "goinstall"
|
install-mode: "goinstall"
|
||||||
|
|||||||
4
.github/workflows/greetings.yml
vendored
4
.github/workflows/greetings.yml
vendored
@ -26,9 +26,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/first-interaction@main
|
- uses: actions/first-interaction@v1.1.1
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
repo-token: ${{ secrets.REDBOT_GITHUB_TOKEN }}
|
||||||
issue-message: |
|
issue-message: |
|
||||||
Hello! Thank you for filing an issue.
|
Hello! Thank you for filing an issue.
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/pull-request.yml
vendored
2
.github/workflows/pull-request.yml
vendored
@ -110,5 +110,5 @@ jobs:
|
|||||||
<sub>[workflow](https://github.com/OpenIMSDK/Open-IM-Server/blob/main/.github/workflows/pull-request.yml).</sub>
|
<sub>[workflow](https://github.com/OpenIMSDK/Open-IM-Server/blob/main/.github/workflows/pull-request.yml).</sub>
|
||||||
base: main
|
base: main
|
||||||
branch: cicd/patch-${{ github.event.number }}
|
branch: cicd/patch-${{ github.event.number }}
|
||||||
labels: kind/documentation, area/test, ok-to-test
|
labels: kind/documentation
|
||||||
token: ${{ secrets.REDBOT_GITHUB_TOKEN }}
|
token: ${{ secrets.REDBOT_GITHUB_TOKEN }}
|
||||||
@ -90,8 +90,8 @@ services:
|
|||||||
- 9090:9090
|
- 9090:9090
|
||||||
container_name: minio
|
container_name: minio
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/data:/data
|
- ${DATA_DIR}/components/mnt/data:/data
|
||||||
- /mnt/config:/root/.minio
|
- ${DATA_DIR}/components/mnt/config:/root/.minio
|
||||||
environment:
|
environment:
|
||||||
MINIO_ROOT_USER: ${USER}
|
MINIO_ROOT_USER: ${USER}
|
||||||
MINIO_ROOT_PASSWORD: ${PASSWORD}
|
MINIO_ROOT_PASSWORD: ${PASSWORD}
|
||||||
@ -99,15 +99,15 @@ services:
|
|||||||
command: minio server /data --console-address ':9090'
|
command: minio server /data --console-address ':9090'
|
||||||
|
|
||||||
openim-server:
|
openim-server:
|
||||||
# image: ghcr.io/openimsdk/openim-server:main
|
image: ghcr.io/openimsdk/openim-server:main
|
||||||
image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-server:main
|
# image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-server:main
|
||||||
# image: openim/openim-server:main
|
# image: openim/openim-server:main
|
||||||
container_name: openim-server
|
container_name: openim-server
|
||||||
healthcheck:
|
# healthcheck:
|
||||||
test: ["CMD-SHELL", "./scripts/check-all.sh"]
|
# test: ["CMD-SHELL", "./scripts/check-all.sh"]
|
||||||
interval: 30s
|
# interval: 30s
|
||||||
timeout: 10s
|
# timeout: 10s
|
||||||
retries: 5
|
# retries: 5
|
||||||
volumes:
|
volumes:
|
||||||
- ./logs:/openim/openim-server/logs
|
- ./logs:/openim/openim-server/logs
|
||||||
- ./config:/openim/openim-server/config
|
- ./config:/openim/openim-server/config
|
||||||
@ -179,10 +179,6 @@ services:
|
|||||||
- prometheus
|
- prometheus
|
||||||
network_mode: "host"
|
network_mode: "host"
|
||||||
|
|
||||||
volumes:
|
|
||||||
openim-chat_logs:
|
|
||||||
openim-chat_config:
|
|
||||||
openim-chat_scripts:
|
|
||||||
|
|
||||||
# node-exporter:
|
# node-exporter:
|
||||||
# image: quay.io/prometheus/node-exporter
|
# image: quay.io/prometheus/node-exporter
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user