Skip to content

Commit a916757

Browse files
committed
[devops] debug comp test
1 parent 030c5d7 commit a916757

8 files changed

+8
-26
lines changed

.github/workflows/compatiblity_test_on_dispatch.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,6 @@ jobs:
5353
options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/
5454
timeout-minutes: 200
5555
steps:
56-
- name: Clean cache
57-
run: |
58-
if [ -d "~/.triton" ]; then
59-
rm -rf ~/.triton
60-
fi
61-
6256
- name: Install dependencies
6357
run: |
6458
apt update && apt install -y cmake
@@ -70,7 +64,7 @@ jobs:
7064

7165
- name: Install Colossal-AI
7266
run: |
73-
BUILD_EXT=1 pip install -v .
67+
BUILD_EXT=1 pip install -v -e .
7468
pip install --no-cache-dir -r requirements/requirements-test.txt
7569
7670
- name: Install tensornvme

.github/workflows/compatiblity_test_on_pr.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,6 @@ jobs:
4747
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-run-test-${{ matrix.container }}
4848
cancel-in-progress: true
4949
steps:
50-
- name: Clean cache
51-
run: |
52-
if [ -d "~/.triton" ]; then
53-
rm -rf ~/.triton
54-
fi
55-
5650
- name: Install dependencies
5751
run: |
5852
apt update && apt install -y cmake
@@ -64,7 +58,7 @@ jobs:
6458

6559
- name: Install Colossal-AI
6660
run: |
67-
BUILD_EXT=1 pip install -v .
61+
BUILD_EXT=1 pip install -v -e .
6862
pip install --no-cache-dir -r requirements/requirements-test.txt
6963
7064
- name: Install tensornvme

.github/workflows/compatiblity_test_on_schedule.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ jobs:
4141
options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/
4242
timeout-minutes: 200
4343
steps:
44-
- name: Clean cache
45-
run: |
46-
if [ -d "~/.triton" ]; then
47-
rm -rf ~/.triton
48-
fi
49-
5044
- name: Install dependencies
5145
run: |
5246
apt update && apt install -y cmake
@@ -58,7 +52,7 @@ jobs:
5852

5953
- name: Install Colossal-AI
6054
run: |
61-
BUILD_EXT=1 pip install -v .
55+
BUILD_EXT=1 pip install -v -e .
6256
pip install --no-cache-dir -r requirements/requirements-test.txt
6357
6458
- name: Install tensornvme

.github/workflows/cuda_ext_check_before_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
5252
- name: Build
5353
run: |
54-
BUILD_EXT=1 pip install -v .
54+
BUILD_EXT=1 pip install -v -e .

.github/workflows/doc_test_on_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- name: Install ColossalAI
9090
run: |
9191
source activate pytorch
92-
BUILD_EXT=1 pip install -v .
92+
BUILD_EXT=1 pip install -v -e .
9393
9494
- name: Test the Doc
9595
run: |

.github/workflows/doc_test_on_schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install ColossalAI
3434
run: |
35-
BUILD_EXT=1 pip install -v .
35+
BUILD_EXT=1 pip install -v -e .
3636
3737
- name: Install Doc Test Requirements
3838
run: |

.github/workflows/example_check_on_dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v3
5454
- name: Install Colossal-AI
5555
run: |
56-
BUILD_EXT=1 pip install -v .
56+
BUILD_EXT=1 pip install -v -e .
5757
- name: Test the example
5858
run: |
5959
dir=${{ matrix.directory }}

.github/workflows/example_check_on_schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Install Colossal-AI
4545
run: |
46-
BUILD_EXT=1 pip install -v .
46+
BUILD_EXT=1 pip install -v -e .
4747
4848
- name: Traverse all files
4949
run: |

0 commit comments

Comments
 (0)