diff --git a/.github/workflows/3.0-archlinux-release.yml b/.github/workflows/3.0-archlinux-release.yml index 7c086a75..8b716026 100644 --- a/.github/workflows/3.0-archlinux-release.yml +++ b/.github/workflows/3.0-archlinux-release.yml @@ -167,7 +167,6 @@ jobs: if: | (needs.check-changed.outputs.changedflag == 'true' && github.event_name == 'pull_request') - || github.event_name == 'push' run: | git config --global --add safe.directory /__w/taos-tools/taos-tools git fetch origin +refs/pull/${{env.PR_NUMBER}}/merge diff --git a/.github/workflows/3.0-taosbenchmark-debug.yml b/.github/workflows/3.0-taosbenchmark-debug.yml index 9f522355..12adbdd0 100644 --- a/.github/workflows/3.0-taosbenchmark-debug.yml +++ b/.github/workflows/3.0-taosbenchmark-debug.yml @@ -164,7 +164,7 @@ jobs: if find taosbenchmark -name "*.py"|grep -q .; then - for i in `find taosbenchmark -name "*.py"|grep -Ev "v2|websocket|taosdemo|cloud"|sort`; \ + for i in `find taosbenchmark -name "*.py"|grep -Ev "v2|websocket|taosdemo|kill-slow-query|cloud"|sort`; \ do printf $i && python3 ./test.py -f $i > /dev/null \ && echo -e " \033[32m taosbenchmark-release-test/$i success! \033[0m" \ | tee -a ~/taosbenchmark-release-success.txt \ diff --git a/.github/workflows/3.0-taosbenchmark-release.yml b/.github/workflows/3.0-taosbenchmark-release.yml index 7c0e3bd5..9566c152 100644 --- a/.github/workflows/3.0-taosbenchmark-release.yml +++ b/.github/workflows/3.0-taosbenchmark-release.yml @@ -164,7 +164,7 @@ jobs: if find taosbenchmark -name "*.py"|grep -q .; then - for i in `find taosbenchmark -name "*.py"|grep -Ev "v2|websocket|taosdemo|cloud"|sort`; \ + for i in `find taosbenchmark -name "*.py"|grep -Ev "v2|websocket|taosdemo|kill-slow-query|cloud"|sort`; \ do printf $i && python3 ./test.py -f $i > /dev/null \ && echo -e " \033[32m taosbenchmark-release-test/$i success! \033[0m" \ | tee -a ~/taosbenchmark-release-success.txt \