feat: regenerate pb file

pull/509/head
Gordon 2 years ago
commit dd4d321108

@ -1,4 +1,4 @@
name: Execute Scripts
name: OpenIM Start Execute Scripts
on:
push:
@ -27,20 +27,23 @@ jobs:
uses: actions/checkout@v2
- name: Start Docker Compose
run: |
run: |
docker-compose stop
docker-compose up -d
sleep 60
- name: Stop all services
run: |
chmod +x ./scripts/stop_all.sh
./scripts/stop_all.sh
shell: bash
- name: Build all services
run: |
chmod +x ./scripts/build_all_service.sh
./scripts/build_all_service.sh
cat logs/openIM.log
shell: bash
- name: Start all services
run: |
@ -48,16 +51,19 @@ jobs:
./scripts/start_all.sh
cat logs/openIM.log
continue-on-error: true
shell: bash
- name: Check all services
run: |
chmod +x ./scripts/check_all.sh
./scripts/check_all.sh
cat logs/openIM.log
shell: bash
continue-on-error: true
- name: Print openIM.log
run: |
cat -n logs/openIM.log
cat logs/openIM.log
cat logs/openIM.log >> "$GITHUB_OUTPUT"
shell: bash
continue-on-error: true

Binary file not shown.

Before

Width:  |  Height:  |  Size: 420 KiB

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 58 KiB

@ -31,7 +31,7 @@ import (
)
const (
maxRetry = 100
maxRetry = 100 //number of retries
)
// newMysqlGormDB Initialize the database connection

Loading…
Cancel
Save