mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
update some ci file (#2200)
* Update openimci.yml * Update golangci-lint.yml * Update e2e-test.yml
This commit is contained in:
parent
64f4cd103c
commit
75a3b9199a
45
.github/workflows/e2e-test.yml
vendored
45
.github/workflows/e2e-test.yml
vendored
@ -73,14 +73,22 @@ jobs:
|
|||||||
|
|
||||||
- name: Docker Operations
|
- name: Docker Operations
|
||||||
run: |
|
run: |
|
||||||
sudo make init
|
|
||||||
sudo docker compose up -d
|
sudo docker compose up -d
|
||||||
|
sudo bash bootstrap.sh
|
||||||
|
sudo mage
|
||||||
sudo sleep 20
|
sudo sleep 20
|
||||||
|
|
||||||
- name: Module Operations
|
- name: Module Operations
|
||||||
run: |
|
run: |
|
||||||
sudo make tidy
|
sudo go mod tidy
|
||||||
sudo make tools.verify.go-gitlint
|
echo "===========> Verifying go-gitlint is installed"
|
||||||
|
if [ ! -f ./_output/tools/go-gitlint ]; then
|
||||||
|
export GOBIN=$(pwd)/_output/tools
|
||||||
|
echo "===========> Installing The default installation path is /home/ubuntu/DF/open-im-server/_output/tools/go-gitlint"
|
||||||
|
sudo go install github.com/marmotedu/go-gitlint/cmd/go-gitlint@latest
|
||||||
|
echo "===========> go-gitlint is installed in /home/ubuntu/DF/open-im-server/_output/tools/go-gitlint"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
- name: Build, Start(make build && make start)
|
- name: Build, Start(make build && make start)
|
||||||
run: |
|
run: |
|
||||||
@ -90,7 +98,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
sudo ./scripts/install/install.sh -s
|
sudo ./scripts/install/install.sh -s
|
||||||
|
|
||||||
- name: Exec OpenIM API test (make test-api)
|
# - name: Exec OpenIM API test (make test-api)
|
||||||
|
- name: Exec OpenIM test (make test)
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ./tmp
|
mkdir -p ./tmp
|
||||||
touch ./tmp/test.md
|
touch ./tmp/test.md
|
||||||
@ -98,23 +107,27 @@ jobs:
|
|||||||
echo "## OpenIM API Test" >> ./tmp/test.md
|
echo "## OpenIM API Test" >> ./tmp/test.md
|
||||||
echo "<details><summary>Command Output for OpenIM API Test</summary>" >> ./tmp/test.md
|
echo "<details><summary>Command Output for OpenIM API Test</summary>" >> ./tmp/test.md
|
||||||
echo "<pre><code>" >> ./tmp/test.md
|
echo "<pre><code>" >> ./tmp/test.md
|
||||||
sudo make test-api | tee -a ./tmp/test.md
|
echo "===========> Run api test"
|
||||||
|
./scripts/install/test.sh
|
||||||
|
echo "===========> Run api test" >> ./tmp/test.md
|
||||||
|
./scripts/install/test.sh >> ./tmp/test.md
|
||||||
echo "</code></pre>" >> ./tmp/test.md
|
echo "</code></pre>" >> ./tmp/test.md
|
||||||
echo "</details>" >> ./tmp/test.md
|
echo "</details>" >> ./tmp/test.md
|
||||||
|
|
||||||
sudo make test-api
|
echo "===========> Run api test"
|
||||||
|
./scripts/install/test.sh
|
||||||
|
|
||||||
- name: Exec OpenIM E2E Test (make test-e2e)
|
# - name: Exec OpenIM E2E Test (make test-e2e)
|
||||||
run: |
|
# run: |
|
||||||
echo "" >> ./tmp/test.md
|
# echo "" >> ./tmp/test.md
|
||||||
echo "## OpenIM E2E Test" >> ./tmp/test.md
|
# echo "## OpenIM E2E Test" >> ./tmp/test.md
|
||||||
echo "<details><summary>Command Output for OpenIM E2E Test</summary>" >> ./tmp/test.md
|
# echo "<details><summary>Command Output for OpenIM E2E Test</summary>" >> ./tmp/test.md
|
||||||
echo "<pre><code>" >> ./tmp/test.md
|
# echo "<pre><code>" >> ./tmp/test.md
|
||||||
sudo make test-e2e | tee -a ./tmp/test.md
|
# sudo make test-e2e | tee -a ./tmp/test.md
|
||||||
echo "</code></pre>" >> ./tmp/test.md
|
# echo "</code></pre>" >> ./tmp/test.md
|
||||||
echo "</details>" >> ./tmp/test.md
|
# echo "</details>" >> ./tmp/test.md
|
||||||
|
|
||||||
sudo make test-e2e
|
# sudo make test-e2e
|
||||||
|
|
||||||
- name: Comment PR with file
|
- name: Comment PR with file
|
||||||
uses: thollander/actions-comment-pull-request@v2
|
uses: thollander/actions-comment-pull-request@v2
|
||||||
|
8
.github/workflows/golangci-lint.yml
vendored
8
.github/workflows/golangci-lint.yml
vendored
@ -29,7 +29,13 @@ jobs:
|
|||||||
go-version: '1.21'
|
go-version: '1.21'
|
||||||
cache: false
|
cache: false
|
||||||
- name: OpenIM Scripts Verification(make verify)
|
- name: OpenIM Scripts Verification(make verify)
|
||||||
run: sudo make verify
|
run: |
|
||||||
|
cd scripts
|
||||||
|
for script in verify-*; do
|
||||||
|
if [ -x "$script" ]; then
|
||||||
|
./"$script"
|
||||||
|
fi
|
||||||
|
done
|
||||||
- name: golangci-lint
|
- name: golangci-lint
|
||||||
uses: golangci/golangci-lint-action@v4.0.0
|
uses: golangci/golangci-lint-action@v4.0.0
|
||||||
with:
|
with:
|
||||||
|
397
.github/workflows/openimci.yml
vendored
397
.github/workflows/openimci.yml
vendored
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
# Copyright © 2023 OpenIM open source community. All rights reserved.
|
# Copyright © 2023 OpenIM open source community. All rights reserved.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
@ -11,8 +12,7 @@
|
|||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
name: OpenIM CI Auto Build
|
||||||
name: OpenIM CI Aotu Build and Install
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -37,269 +37,154 @@ on:
|
|||||||
- "**.md"
|
- "**.md"
|
||||||
- "docs/**"
|
- "docs/**"
|
||||||
|
|
||||||
env:
|
|
||||||
GO_VERSION: "1.19"
|
|
||||||
GOLANGCI_VERSION: "v1.50.1"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
openim:
|
|
||||||
name: Test with go ${{ matrix.go_version }} on ${{ matrix.os }}
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
environment:
|
|
||||||
name: openim
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
go_version: ["1.19","1.20","1.21"]
|
|
||||||
os: [ubuntu-latest]
|
|
||||||
steps:
|
|
||||||
- name: Setup
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Set up Go ${{ matrix.go_version }}
|
build-linux:
|
||||||
uses: actions/setup-go@v5
|
name: Execute OpenIM Script On Linux
|
||||||
with:
|
|
||||||
go-version: ${{ matrix.go_version }}
|
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Install Task
|
|
||||||
uses: arduino/setup-task@v1
|
|
||||||
with:
|
|
||||||
version: '3.x' # If available, use the latest major version that's compatible
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Code Typecheck Detector
|
|
||||||
uses: kubecub/typecheck@main
|
|
||||||
|
|
||||||
- name: Conformity Checker for Project
|
|
||||||
uses: kubecub/standardizer@main
|
|
||||||
|
|
||||||
- name: Module Operations
|
|
||||||
run: |
|
|
||||||
sudo make tidy
|
|
||||||
sudo make tools.verify.go-gitlint
|
|
||||||
|
|
||||||
- name: Format Code
|
|
||||||
run: sudo make format
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Generate Files
|
|
||||||
run: make gen
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Build Source
|
|
||||||
run: sudo make build
|
|
||||||
|
|
||||||
- name: Build multiarch PLATFORMS
|
|
||||||
if: startsWith(github.ref, 'refs/heads/release-')
|
|
||||||
run: |
|
|
||||||
sudo make multiarch
|
|
||||||
|
|
||||||
- name: Cleanup Build
|
|
||||||
run: sudo make clean
|
|
||||||
|
|
||||||
- name: Set Current Directory
|
|
||||||
id: set_directory
|
|
||||||
run: echo "::set-output name=directory::$(pwd)"
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Collect and Display Test Coverage
|
|
||||||
id: collect_coverage
|
|
||||||
run: |
|
|
||||||
cd ${{ steps.set_directory.outputs.directory }}
|
|
||||||
make cover
|
|
||||||
echo "::set-output name=coverage_file::./_output/tmp/coverage.out"
|
|
||||||
echo "Test Coverage:"
|
|
||||||
cat ${{ steps.collect_coverage.outputs.coverage_file }}
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
openim-start:
|
|
||||||
name: Test OpenIM install/start on ${{ matrix.os }}-${{ matrix.arch }}
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
environment:
|
|
||||||
name: openim
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
go_version: ["1.21"]
|
|
||||||
os: ["ubuntu-latest"]
|
|
||||||
steps:
|
|
||||||
- name: Checkout and Install OpenIM
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Install Task
|
|
||||||
uses: arduino/setup-task@v1
|
|
||||||
with:
|
|
||||||
version: '3.x' # If available, use the latest major version that's compatible
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
- name: Run OpenIM make install start
|
|
||||||
run: |
|
|
||||||
sudo make install
|
|
||||||
|
|
||||||
# - name: Check the OpenIM environment and status
|
|
||||||
# run: |
|
|
||||||
# sudo docker images
|
|
||||||
# sudo docker ps
|
|
||||||
|
|
||||||
- name: Check the OpenIM environment and status
|
|
||||||
if: runner.os == 'Linux' && matrix.arch == 'amd64'
|
|
||||||
id: docker_info
|
|
||||||
run: |
|
|
||||||
sleep 30
|
|
||||||
echo "images<<EOF" >> $GITHUB_ENV
|
|
||||||
sudo docker images >> $GITHUB_ENV
|
|
||||||
echo "EOF" >> $GITHUB_ENV
|
|
||||||
echo "containers<<EOF" >> $GITHUB_ENV
|
|
||||||
sudo docker ps >> $GITHUB_ENV
|
|
||||||
echo "EOF" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Comment PR
|
|
||||||
uses: thollander/actions-comment-pull-request@v2
|
|
||||||
if: runner.os == 'Linux' && matrix.arch == 'amd64'
|
|
||||||
with:
|
|
||||||
message: |
|
|
||||||
> [!TIP]
|
|
||||||
> Run make install to check the status
|
|
||||||
|
|
||||||
### Docker Images:
|
|
||||||
<details><summary>Click to expand docker images</summary>
|
|
||||||
```bash
|
|
||||||
${{ env.images }}
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
|
|
||||||
### Docker Processes:
|
|
||||||
<details><summary>Click to expand docker ps</summary>
|
|
||||||
```bash
|
|
||||||
${{ env.containers }}
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
execute-scripts:
|
|
||||||
name: Execute OpenIM Script On ${{ matrix.os }}-${{ matrix.arch }}
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
environment:
|
|
||||||
name: openim
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
go_version: ["1.21"]
|
|
||||||
os: ["ubuntu-latest", "macos-latest"]
|
|
||||||
arch: [arm64, armv7, amd64]
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Set up Go ${{ matrix.go_version }}
|
|
||||||
uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: ${{ matrix.go_version }}
|
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Install Task
|
|
||||||
uses: arduino/setup-task@v1
|
|
||||||
with:
|
|
||||||
version: '3.x' # If available, use the latest major version that's compatible
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
# - name: Install latest Bash (macOS only)
|
|
||||||
# if: runner.os == 'macOS' && matrix.arch == 'arm64'
|
|
||||||
# run: |
|
|
||||||
# /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
||||||
# brew update
|
|
||||||
|
|
||||||
# brew install bash
|
|
||||||
# brew install gnu-sed
|
|
||||||
|
|
||||||
# echo "/usr/local/bin" >> $GITHUB_PATH
|
|
||||||
# echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
|
|
||||||
# continue-on-error: true
|
|
||||||
|
|
||||||
- name: Set up Docker for Ubuntu
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
run: |
|
|
||||||
sudo make init
|
|
||||||
sudo docker compose up -d
|
|
||||||
sudo sleep 20
|
|
||||||
|
|
||||||
# - name: Set up Docker for macOS
|
|
||||||
# if: runner.os == 'macOS' && matrix.arch == 'arm64'
|
|
||||||
# run: |
|
|
||||||
# brew install --cask docker
|
|
||||||
# open /Applications/Docker.app
|
|
||||||
|
|
||||||
# sleep 10
|
|
||||||
# docker-compose --version || brew install docker-compose
|
|
||||||
|
|
||||||
# docker-compose up -d
|
|
||||||
# sleep 20
|
|
||||||
|
|
||||||
- name: Module Operations for Ubuntu
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
run: |
|
|
||||||
sudo make tidy
|
|
||||||
sudo make tools.verify.go-gitlint
|
|
||||||
|
|
||||||
# - name: Module Operations for macOS
|
|
||||||
# if: runner.os == 'macOS'
|
|
||||||
# run: |
|
|
||||||
# make tidy
|
|
||||||
# make tools.verify.go-gitlint
|
|
||||||
|
|
||||||
- name: Build, Start, Check Services and Print Logs for Ubuntu
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
run: |
|
|
||||||
sudo make build
|
|
||||||
sudo make start
|
|
||||||
sudo make check
|
|
||||||
|
|
||||||
- name: Restart Services and Print Logs for Ubuntu
|
|
||||||
if: runner.os == 'Linux' && matrix.arch == 'amd64'
|
|
||||||
run: |
|
|
||||||
sudo make restart
|
|
||||||
sudo make check
|
|
||||||
|
|
||||||
- name: Build, Start, Check Services and Print Logs for macOS
|
|
||||||
if: runner.os == 'macOS' && matrix.arch == 'arm64'
|
|
||||||
run: |
|
|
||||||
make build
|
|
||||||
|
|
||||||
openim-test-build-image:
|
|
||||||
name: Build OpenIM Docker Image
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
environment:
|
environment:
|
||||||
name: openim
|
name: openim
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch: [arm64, armv7, amd64]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Set up Go ${{ matrix.go_version }}
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go_version }}
|
go-version: '1.21'
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Install Task
|
- name: Set up Docker for Linux
|
||||||
uses: arduino/setup-task@v1
|
|
||||||
with:
|
|
||||||
version: '3.x' # If available, use the latest major version that's compatible
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Test Docker Build
|
|
||||||
run: |
|
run: |
|
||||||
sudo make init
|
sudo docker compose up -d
|
||||||
sudo make image
|
sudo sleep 30 # Increased sleep time for better stability
|
||||||
|
timeout-minutes: 20 # Increased timeout for Docker setup
|
||||||
|
|
||||||
- name: Get OpenIM Docker Images Status
|
|
||||||
id: docker_processes
|
- name: init
|
||||||
|
run: sudo bash bootstrap.sh
|
||||||
|
timeout-minutes: 20
|
||||||
|
|
||||||
|
- name: Build, Start, Check Services and Print Logs for Linux
|
||||||
run: |
|
run: |
|
||||||
sudo docker images
|
sudo mage
|
||||||
sudo docker ps
|
sudo mage start
|
||||||
|
sudo mage check
|
||||||
|
|
||||||
|
|
||||||
|
- name: Restart Services and Print Logs
|
||||||
|
run: |
|
||||||
|
sudo mage stop
|
||||||
|
sudo mage start
|
||||||
|
sudo mage check
|
||||||
|
|
||||||
|
|
||||||
|
# build-mac:
|
||||||
|
# name: Execute OpenIM Script On macOS
|
||||||
|
# runs-on: macos-latest
|
||||||
|
# permissions:
|
||||||
|
# contents: write
|
||||||
|
# pull-requests: write
|
||||||
|
# environment:
|
||||||
|
# name: openim
|
||||||
|
# strategy:
|
||||||
|
# matrix:
|
||||||
|
# arch: [arm64, armv7, amd64]
|
||||||
|
#
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# - name: Set up Go
|
||||||
|
# uses: actions/setup-go@v4
|
||||||
|
# with:
|
||||||
|
# go-version: '1.21'
|
||||||
|
|
||||||
|
|
||||||
|
# while ! docker system info > /dev/null 2>&1; do
|
||||||
|
# echo "Waiting for Docker to start..."
|
||||||
|
# sleep 10 # Increased delay to ensure Docker starts properly
|
||||||
|
# done
|
||||||
|
|
||||||
|
# - name: Install Docker
|
||||||
|
# run: |
|
||||||
|
# brew install docker
|
||||||
|
# brew install docker-compose
|
||||||
|
# sleep 10
|
||||||
|
# docker-compose up -d
|
||||||
|
# sleep 30
|
||||||
|
# timeout-minutes: 20
|
||||||
|
#
|
||||||
|
|
||||||
|
# - name: init
|
||||||
|
# run: sudo bash bootstrap.sh
|
||||||
|
# timeout-minutes: 20
|
||||||
|
|
||||||
|
# - name: Build, Start, Check Services and Print Logs for Linux
|
||||||
|
# run: |
|
||||||
|
# sudo mage
|
||||||
|
# sudo mage start
|
||||||
|
# sudo mage check
|
||||||
|
|
||||||
|
# - name: Restart Services and Print Logs
|
||||||
|
# run: |
|
||||||
|
# sudo mage stop
|
||||||
|
# sudo mage start
|
||||||
|
# sudo mage check
|
||||||
|
|
||||||
|
# build-windows:
|
||||||
|
# name: Execute OpenIM Script On Windows
|
||||||
|
# runs-on: windows-latest
|
||||||
|
# permissions:
|
||||||
|
# contents: write
|
||||||
|
# pull-requests: write
|
||||||
|
# environment:
|
||||||
|
# name: openim
|
||||||
|
# strategy:
|
||||||
|
# matrix:
|
||||||
|
# arch: [arm64, armv7, amd64]
|
||||||
|
#
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# - name: Set up Go
|
||||||
|
# uses: actions/setup-go@v4
|
||||||
|
# with:
|
||||||
|
# go-version: '1.21'
|
||||||
|
|
||||||
|
# - name: Set up Docker for Windows
|
||||||
|
# run: |
|
||||||
|
# $images = @("zookeeper", "redis", "kafka")
|
||||||
|
# foreach ($image in $images) {
|
||||||
|
# $tag = "$image:latest"
|
||||||
|
# docker pull $tag | Out-Null
|
||||||
|
# if ($LASTEXITCODE -ne 0) {
|
||||||
|
# Write-Host "Skipping $image as it is not available for Windows"
|
||||||
|
# } else {
|
||||||
|
# Write-Host "Successfully pulled $image"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
# docker compose up -d
|
||||||
|
# Start-Sleep -Seconds 30
|
||||||
|
# timeout-minutes: 20
|
||||||
|
# shell: pwsh
|
||||||
|
|
||||||
|
# - name: init
|
||||||
|
# run: bootstrap.bat
|
||||||
|
# timeout-minutes: 20
|
||||||
|
|
||||||
|
# - name: Build, Start, Check Services and Print Logs for Linux
|
||||||
|
# run: |
|
||||||
|
# mage
|
||||||
|
# mage start
|
||||||
|
# mage check
|
||||||
|
|
||||||
|
# - name: Restart Services and Print Logs
|
||||||
|
# run: |
|
||||||
|
# mage stop
|
||||||
|
# mage start
|
||||||
|
# mage check
|
||||||
|
Loading…
x
Reference in New Issue
Block a user