File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments