Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updata action #518

Merged
merged 2 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .github/workflows/chatci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,3 @@ jobs:
run: |
sudo bash bootstrap.sh
echo "init successfully"

- name: build and start
run: |
mage start
mage check

- name: restart
run: |
mage stop
mage start
mage check
25 changes: 7 additions & 18 deletions .github/workflows/scripts-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up environment
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
# Add other Linux specific setup here
elif [ "$RUNNER_OS" == "macOS" ]; then
# Add macOS specific setup here
brew update
fi
shell: bash

# - name: Install latest Bash (macOS only)
# if: runner.os == 'macOS'
# run: |
Expand All @@ -69,13 +58,6 @@ jobs:
# brew install --cask docker
# open /Applications/Docker.app

- name: Build Chat
run: |
sudo bash bootstrap.sh
sudo mage
sudo mage start
shell: bash

- name: deploy all services
run: |
git clone https://github.com/openimsdk/open-im-server.git
Expand All @@ -95,6 +77,13 @@ jobs:
shell: bash
continue-on-error: true

- name: Build Chat
run: |
sudo bash bootstrap.sh
sudo mage
sudo mage start
shell: bash

- name: Print chat_$(date '+%Y%m%d').log
run: |
ls -al && echo "pwd = $(pwd)"
Expand Down
Loading