|
|
|
@ -105,6 +105,10 @@ jobs:
|
|
|
|
|
- name: push OpenIM
|
|
|
|
|
run: |
|
|
|
|
|
date > generated.txt
|
|
|
|
|
git remote -v
|
|
|
|
|
git status
|
|
|
|
|
git branch -a
|
|
|
|
|
echo "===> git config user.name kubbot"
|
|
|
|
|
git config user.name kubbot
|
|
|
|
|
git config user.email 3293172751ysy@gmail.com
|
|
|
|
|
git add .
|
|
|
|
@ -122,24 +126,31 @@ jobs:
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
|
|
openim-start:
|
|
|
|
|
name: Teat OpenIM make install start on ${{ matrix.os }}
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
environment:
|
|
|
|
|
name: openim
|
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
|
|
|
|
go_version: ["1.20"]
|
|
|
|
|
os: ["ubuntu-latest"]
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up Go ${{ matrix.go_version }}
|
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
|
with:
|
|
|
|
|
go-version: ${{ matrix.go_version }}
|
|
|
|
|
id: go
|
|
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
|
|
- name: Run OpenIM make install start
|
|
|
|
|
run: |
|
|
|
|
|
sudo make install
|
|
|
|
|
name: Test OpenIM make install start on ${{ matrix.os }}
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
environment:
|
|
|
|
|
name: openim
|
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
|
|
|
|
go_version: ["1.20"]
|
|
|
|
|
os: ["ubuntu-latest"]
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up Go ${{ matrix.go_version }}
|
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
|
with:
|
|
|
|
|
go-version: ${{ matrix.go_version }}
|
|
|
|
|
id: go
|
|
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
|
|
- name: Run OpenIM make install start
|
|
|
|
|
run: |
|
|
|
|
|
sudo make install
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
|
|
- name: Upload Logs
|
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
|
with:
|
|
|
|
|
name: OpenIM Logs
|
|
|
|
|
path: /home/runner/work/Open-IM-Server/Open-IM-Server/logs/openIM.log
|