mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
feat: fix openim logs and ci (#1817)
This commit is contained in:
parent
d356f7a035
commit
9527278239
3
.github/workflows/pull-request.yml
vendored
3
.github/workflows/pull-request.yml
vendored
@ -78,9 +78,6 @@ jobs:
|
|||||||
echo "Run unit test and get test coverage successfully"
|
echo "Run unit test and get test coverage successfully"
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v2
|
|
||||||
|
|
||||||
- name: OpenIM verify copyright
|
- name: OpenIM verify copyright
|
||||||
run: |
|
run: |
|
||||||
sudo make verify-copyright
|
sudo make verify-copyright
|
||||||
|
3
.github/workflows/sync-release.yml
vendored
3
.github/workflows/sync-release.yml
vendored
@ -3,7 +3,7 @@
|
|||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
|
||||||
# https://github.com/BetaHuhn/repo-file-sync-action
|
# https://github.com/BetaHuhn/repo-file-sync-action
|
||||||
name: Synchronize kubecub public code to other repositories
|
name: Synchronize OpenIM Release Branch Public Code To Other Repositories
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
@ -41,3 +41,4 @@ jobs:
|
|||||||
automerge
|
automerge
|
||||||
ASSIGNEES: |
|
ASSIGNEES: |
|
||||||
kubbot
|
kubbot
|
||||||
|
continue-on-error: true
|
5
.github/workflows/sync.yml
vendored
5
.github/workflows/sync.yml
vendored
@ -3,7 +3,7 @@
|
|||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
|
||||||
# https://github.com/BetaHuhn/repo-file-sync-action
|
# https://github.com/BetaHuhn/repo-file-sync-action
|
||||||
name: Synchronize kubecub public code to other repositories
|
name: Synchronize OpenIM Main Branch Public Code To Other Repositories
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
@ -36,4 +36,5 @@ jobs:
|
|||||||
file-sync
|
file-sync
|
||||||
automerge
|
automerge
|
||||||
ASSIGNEES: |
|
ASSIGNEES: |
|
||||||
kubbot
|
kubbot
|
||||||
|
continue-on-error: true
|
@ -129,7 +129,7 @@ openim::log::error_exit() {
|
|||||||
|
|
||||||
# Log an error but keep going. Don't dump the stack or exit.
|
# Log an error but keep going. Don't dump the stack or exit.
|
||||||
openim::log::error() {
|
openim::log::error() {
|
||||||
timestamp=$(date +"[%m%d %H:%M:%S]")
|
timestamp=$(date +"[%Y-%m-%d %H:%M:%S %Z]")
|
||||||
echo_log "!!! ${timestamp} ${1-}" >&2
|
echo_log "!!! ${timestamp} ${1-}" >&2
|
||||||
shift
|
shift
|
||||||
for message; do
|
for message; do
|
||||||
@ -192,7 +192,7 @@ openim::log::status() {
|
|||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
timestamp=$(date +"[%m%d %H:%M:%S]")
|
timestamp=$(date +"[%Y-%m-%d %H:%M:%S %Z]")
|
||||||
echo_log "+++ ${timestamp} ${1}"
|
echo_log "+++ ${timestamp} ${1}"
|
||||||
shift
|
shift
|
||||||
for message; do
|
for message; do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user