Skip to content

Commit

Permalink
Merge pull request #1357 from IndustryEssentials/prerelease
Browse files Browse the repository at this point in the history
[YMIR] Release-2.0
  • Loading branch information
phoenix-xhuang committed Nov 8, 2022
2 parents c8335e8 + f47d73e commit b6f948a
Show file tree
Hide file tree
Showing 745 changed files with 52,862 additions and 24,390 deletions.
18 changes: 18 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,21 @@ ANONYMOUS_UUID=

# nvidia for gpu, runc for cpu.
SERVER_RUNTIME=nvidia

# Dispatch training task to OPENPAI.
OPENPAI_HOST=
OPENPAI_TOKEN=
OPENPAI_STORAGE=
OPENPAI_USER=
OPENPAI_CLUSTER=
OPENPAI_GPUTYPE=

# viewer
MONGODB_HOST_PORT=27019
MONGODB_USE_CACHE=True

# model deployment module env
# if you don't want to install model deployment module, set DEPLOY_MODULE_HOST_PORT to empty
DEPLOY_MODULE_HOST_PORT=18801
DEPLOY_MODULE_URL=${DEPLOY_MODULE_HOST_PORT}
DEPLOY_MODULE_MYSQL_ROOT_PASSWORD=deploy_db_passwd
14 changes: 12 additions & 2 deletions .github/workflows/backend-pr.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: unittest
name: backend-unittest

on:
pull_request:
branches:
- master
- dev
- prerelease

env:
PYTHONPATH: ./ymir/backend
Expand All @@ -24,8 +25,17 @@ jobs:
python-version: 3.8
- name: Install dependencies
run: |
pip install tox
time pip install tox
working-directory: ymir/backend
- name: Cache Tox Environment
uses: actions/cache@v3
with:
path: |
ymir/backend/.tox
ymir/backend/.mypy_cache
# requirements.txt and requirements-dev.txt have versioning info that would
# impact the tox environment.
key: tox-${{ hashFiles('ymir/backend/requirements.txt', 'ymir/backend/requirements-dev.txt') }}
- name: Test with tox
run: |
git config --global user.name 'CI-test'
Expand Down
20 changes: 14 additions & 6 deletions .github/workflows/command-pr.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: uniitest
name: command-uniitest

on:
pull_request:
branches:
- master
- dev
- prerelease

jobs:
command-ci:
Expand All @@ -20,22 +21,29 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Cache Python Environment
uses: actions/cache@v3
with:
path: |
ymir/command/.mypy_cache
${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('ymir/command/requirements.txt', 'ymir/command/requirements-ci.txt') }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-ci.txt
time pip install -r requirements.txt
time pip install -r requirements-ci.txt
working-directory: ymir/command
- name: mypy
run: |
mypy mir
time mypy mir
working-directory: ymir/command
- name: flake8
run: |
flake8 mir
time flake8 mir
working-directory: ymir/command
- name: Test with pytest
run: |
git config --global user.name 'CI-TEST'
git config --global user.email 'ci-test@ymir-team'
python tests/__main__.py
time python tests/__main__.py
working-directory: ymir/command
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ on:
branches:
- master
- dev
- prerelease
paths:
- 'docker_executor/sample_executor/**'

jobs:
executor-framework-ci:
exc-sdk-ci:

runs-on: ubuntu-latest

Expand All @@ -24,17 +25,17 @@ jobs:
python-version: 3.8
- name: Install dependencies
run: |
pip install -r executor/requirements.txt
pip install -r executor/requirements-ci.txt
pip install -r ymir_exc/requirements.txt
pip install -r ymir_exc/requirements-ci.txt
working-directory: docker_executor/sample_executor
- name: mypy
run: |
mypy .
working-directory: docker_executor/sample_executor/executor
working-directory: docker_executor/sample_executor/ymir_exc
- name: flake8
run: |
flake8 .
working-directory: docker_executor/sample_executor/executor
working-directory: docker_executor/sample_executor/ymir_exc
- name: Test with pytest
run: |
python tests/__main__.py
Expand Down
48 changes: 48 additions & 0 deletions .github/workflows/hel-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: hel-unittest

on:
pull_request:
branches:
- master
- dev
- prerelease

jobs:
hel-ci:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18

- name: Cache Go Environment
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Verify dependencies
working-directory: ymir/backend/src/ymir_hel
run: |
time go mod verify
time go install honnef.co/go/tools/cmd/staticcheck@latest
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.48
working-directory: ymir/backend/src/ymir_hel

- name: Lint and test code
working-directory: ymir/backend/src/ymir_hel
run: |
git config --global user.name 'CI-TEST'
git config --global user.email 'ci-test@ymir-team'
bash run_tests.sh
17 changes: 11 additions & 6 deletions .github/workflows/web-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ name: Node.js CI

on:
pull_request:
branches: [ master, dev ]
branches:
- master
- dev
- prerelease


jobs:
web-ci:
Expand All @@ -14,14 +18,15 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
- name: Use Node.js 16.10
uses: actions/setup-node@v3
with:
node-version: 16.x
# node-version: 16.12 or above has issue at caching.
node-version: 16.10
cache: 'npm'
cache-dependency-path: ymir/web/package-lock.json
- name: Test with npm
run: |
npm install
npm run test:coverage
time npm ci
time CI=true npm run test:coverage
working-directory: ymir/web
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ coverage.xml
.hypothesis/
venv/
.python-version
Library/
.mypy_cache/
.gitconfig

# Translations
*.mo
Expand Down Expand Up @@ -81,7 +84,11 @@ output/
mysql/
redis/
ymir-data/
ymir-workplace
ymir-workplace*
.mir_lock
.local
.pre-commit-config.yaml
ymir/backend/alembic
ymir/backend/static

*/updater/app/mir/protos/*.pyi
Loading

0 comments on commit b6f948a

Please sign in to comment.