update no cache

pull/6001/head
Tong Li 2024-08-16 09:40:34 +00:00
parent 10b72a32b1
commit 42fcc16772
1 changed files with 4 additions and 4 deletions

View File

@ -31,18 +31,18 @@ jobs:
- name: Install Colossal-AI - name: Install Colossal-AI
run: | run: |
BUILD_EXT=1 pip install -v -e . BUILD_EXT=1 pip install --no-cache-dir -v -e .
- name: Install ChatGPT - name: Install ChatGPT
run: | run: |
cd applications/ColossalChat cd applications/ColossalChat
pip install -v . pip install --no-cache-dir -v .
export BUILD_EXT=1 export BUILD_EXT=1
pip install -r examples/requirements.txt pip install --no-cache-dir -r examples/requirements.txt
- name: Install Transformers - name: Install Transformers
run: | run: |
pip install transformers==4.36.2 pip install --no-cache-dir transformers==4.36.2
- name: Execute Examples - name: Execute Examples
run: | run: |