diff --git a/.github/workflows/compatiblity_test_on_dispatch.yml b/.github/workflows/compatiblity_test_on_dispatch.yml index 3da8b5e77df9..3eee564c29ea 100644 --- a/.github/workflows/compatiblity_test_on_dispatch.yml +++ b/.github/workflows/compatiblity_test_on_dispatch.yml @@ -51,11 +51,11 @@ jobs: container: image: ${{ matrix.container }} options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/ - timeout-minutes: 120 + timeout-minutes: 200 steps: - name: Install dependencies run: | - pip install -U pip setuptools wheel --user + pip install -U pip setuptools==68.2.2 wheel --user - uses: actions/checkout@v2 with: repository: hpcaitech/TensorNVMe diff --git a/.github/workflows/compatiblity_test_on_pr.yml b/.github/workflows/compatiblity_test_on_pr.yml index 10ac0e128dc6..b418c843e7f6 100644 --- a/.github/workflows/compatiblity_test_on_pr.yml +++ b/.github/workflows/compatiblity_test_on_pr.yml @@ -42,14 +42,14 @@ jobs: container: image: ${{ matrix.container }} options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/ - timeout-minutes: 120 + timeout-minutes: 200 concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-run-test-${{ matrix.container }} cancel-in-progress: true steps: - name: Install dependencies run: | - pip install -U pip setuptools wheel --user + pip install -U pip setuptools==68.2.2 wheel --user - uses: actions/checkout@v2 with: repository: hpcaitech/TensorNVMe diff --git a/.github/workflows/compatiblity_test_on_schedule.yml b/.github/workflows/compatiblity_test_on_schedule.yml index 84ea7e28d967..8d98e775c828 100644 --- a/.github/workflows/compatiblity_test_on_schedule.yml +++ b/.github/workflows/compatiblity_test_on_schedule.yml @@ -39,11 +39,11 @@ jobs: container: image: ${{ matrix.container }} options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/ - timeout-minutes: 120 + timeout-minutes: 200 steps: - name: Install dependencies run: | - pip install -U pip setuptools wheel --user + pip install -U pip setuptools==68.2.2 wheel --user - uses: actions/checkout@v2 with: diff --git a/.github/workflows/release_docker_after_publish.yml b/.github/workflows/release_docker_after_publish.yml index 0792544bf403..23aac9b544b0 100644 --- a/.github/workflows/release_docker_after_publish.yml +++ b/.github/workflows/release_docker_after_publish.yml @@ -28,6 +28,8 @@ jobs: docker tag $tag $latest echo "tag=${tag}" >> $GITHUB_OUTPUT echo "latest=${latest}" >> $GITHUB_OUTPUT + env: + DOCKER_BUILDKIT: 0 - name: Log in to Docker Hub uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 diff --git a/.github/workflows/run_chatgpt_examples.yml b/.github/workflows/run_chatgpt_examples.yml index ba997f144cd7..4ea86b609267 100644 --- a/.github/workflows/run_chatgpt_examples.yml +++ b/.github/workflows/run_chatgpt_examples.yml @@ -4,10 +4,11 @@ on: pull_request: types: [synchronize, opened, reopened] paths: - - "applications/Chat/coati/**" - - "applications/Chat/requirements.txt" - - "applications/Chat/setup.py" - - "applications/Chat/examples/**" + - "applications/ColossalChat/coati/**" + - "applications/ColossalChat/requirements.txt" + - "applications/ColossalChat/setup.py" + - "applications/ColossalChat/examples/**" + - "applications/ColossalChat/tests/**" jobs: tests: @@ -41,7 +42,7 @@ jobs: - name: Install Transformers run: | - pip install transformers==4.34.1 + pip install transformers==4.36.2 - name: Execute Examples run: | diff --git a/.github/workflows/run_chatgpt_unit_tests.yml b/.github/workflows/run_chatgpt_unit_tests.yml index 1d8a53e4feed..c0e74ecbbab0 100644 --- a/.github/workflows/run_chatgpt_unit_tests.yml +++ b/.github/workflows/run_chatgpt_unit_tests.yml @@ -4,12 +4,11 @@ on: pull_request: types: [synchronize, opened, reopened] paths: - - 'applications/Chat/coati/**' - - 'applications/Chat/requirements.txt' - - 'applications/Chat/setup.py' - - 'applications/Chat/requirements-test.txt' - - 'applications/Chat/tests/**' - - 'applications/Chat/pytest.ini' + - 'applications/ColossalChat/coati/**' + - 'applications/ColossalChat/requirements.txt' + - 'applications/ColossalChat/setup.py' + - 'applications/ColossalChat/tests/**' + - 'applications/ColossalChat/pytest.ini' jobs: tests: