Skip to content

Commit 1f3d2e9

Browse files
committed
modify
1 parent f84ba16 commit 1f3d2e9

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/pika.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,13 @@ jobs:
224224

225225
- name: Cleanup artifacts
226226
working-directory: ${{ github.workspace }}/build
227-
run: rm -rf ./db ./log ./pika_log ./dump ./*.log || true
227+
run: |
228+
rm -rf Testing CMakeFiles CMakeCache.txt
229+
find . -name "*.o" -o -name "*.a" -delete
230+
find . -name "*.log" -delete
231+
go clean -cache -testcache
232+
rm -rf "$HOME/.cache/go-build" "$HOME/go/pkg/mod"
233+
rm -rf ../log ../pika_log ../dump ../*.log ../dbsync ../db[0-9]* ../log[0-9]*
228234
229235
- name: Start codis, pika master and pika slave
230236
working-directory: ${{ github.workspace }}/build
@@ -295,7 +301,6 @@ jobs:
295301
./start_master_and_slave.sh
296302
chmod +x start_codis.sh
297303
./start_codis.sh
298-
299304
300305
- name: Run Go E2E Tests
301306
working-directory: ${{ github.workspace }}

0 commit comments

Comments
 (0)