-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
455 changed files
with
11,889 additions
and
16,157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
MONGO_IMAGE=mongo:6.0.2 | ||
REDIS_IMAGE=redis:7.0.0 | ||
ZOOKEEPER_IMAGE=bitnami/zookeeper:3.8 | ||
KAFKA_IMAGE=bitnami/kafka:3.5.1 | ||
MINIO_IMAGE=minio/minio:RELEASE.2024-01-11T07-46-16Z | ||
|
||
|
||
OPENIM_WEB_FRONT_IMAGE=openim/openim-web-front:release-v3.5.1 | ||
OPENIM_ADMIN_FRONT_IMAGE=openim/openim-admin-front:release-v1.7 | ||
|
||
DATA_DIR=./ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sh text eol=lf |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,13 @@ jobs: | |
go-version: '1.21' | ||
cache: false | ||
- 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 | ||
uses: golangci/[email protected] | ||
with: | ||
|
Oops, something went wrong.