mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 10:52:33 +08:00
update openim and optimize openim docs and dig check
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
ecbd0a1dd6
commit
45689343f7
28
.github/workflows/openimci.yml
vendored
28
.github/workflows/openimci.yml
vendored
@ -128,8 +128,32 @@ jobs:
|
|||||||
- name: Run OpenIM make install start
|
- name: Run OpenIM make install start
|
||||||
run: |
|
run: |
|
||||||
sudo make install
|
sudo make install
|
||||||
sudo docker images
|
|
||||||
sudo docker ps
|
# - name: Check the OpenIM environment and status
|
||||||
|
# run: |
|
||||||
|
# sudo docker images
|
||||||
|
# sudo docker ps
|
||||||
|
|
||||||
|
- name: Check the OpenIM environment and status
|
||||||
|
id: docker_info
|
||||||
|
run: |
|
||||||
|
IMAGES=$(sudo docker images)
|
||||||
|
CONTAINERS=$(sudo docker ps)
|
||||||
|
echo "::set-output name=images::$IMAGES"
|
||||||
|
echo "::set-output name=containers::$CONTAINERS"
|
||||||
|
- name: Comment PR
|
||||||
|
uses: thollander/actions-comment-pull-request@v2
|
||||||
|
with:
|
||||||
|
message: |
|
||||||
|
### Docker Images:
|
||||||
|
```
|
||||||
|
${{ steps.docker_info.outputs.images }}
|
||||||
|
```
|
||||||
|
### Docker Processes:
|
||||||
|
```
|
||||||
|
${{ steps.docker_info.outputs.containers }}
|
||||||
|
```
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
execute-scripts:
|
execute-scripts:
|
||||||
name: Execute OpenIM Script On ${{ matrix.os }}
|
name: Execute OpenIM Script On ${{ matrix.os }}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user