Unverified Commit 179558a8 authored by Hongxin Liu's avatar Hongxin Liu Committed by GitHub
Browse files

[devops] fix chat ci (#3628)

parent d7bf2847
...@@ -13,6 +13,10 @@ on: ...@@ -13,6 +13,10 @@ on:
jobs: jobs:
tests: tests:
name: Run ChatGPT examples name: Run ChatGPT examples
if: |
github.event.pull_request.draft == false &&
github.base_ref == 'main' &&
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
runs-on: [self-hosted, gpu] runs-on: [self-hosted, gpu]
container: container:
image: hpcaitech/pytorch-cuda:1.12.0-11.3.0 image: hpcaitech/pytorch-cuda:1.12.0-11.3.0
......
...@@ -4,16 +4,20 @@ on: ...@@ -4,16 +4,20 @@ on:
pull_request: pull_request:
types: [synchronize, opened, reopened] types: [synchronize, opened, reopened]
paths: paths:
- 'applications/ChatGPT/chatgpt/**' - 'applications/Chat/coati/**'
- 'applications/ChatGPT/requirements.txt' - 'applications/Chat/requirements.txt'
- 'applications/ChatGPT/setup.py' - 'applications/Chat/setup.py'
- 'applications/ChatGPT/requirements-test.txt' - 'applications/Chat/requirements-test.txt'
- 'applications/ChatGPT/tests/**' - 'applications/Chat/tests/**'
- 'applications/ChatGPT/pytest.ini' - 'applications/Chat/pytest.ini'
jobs: jobs:
tests: tests:
name: Run ChatGPT unit tests name: Run ChatGPT unit tests
if: |
github.event.pull_request.draft == false &&
github.base_ref == 'main' &&
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
runs-on: [self-hosted, gpu] runs-on: [self-hosted, gpu]
container: container:
image: hpcaitech/pytorch-cuda:1.12.0-11.3.0 image: hpcaitech/pytorch-cuda:1.12.0-11.3.0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment