From 1742dd3c0f1dbf5281270c008498c779f7d172fb Mon Sep 17 00:00:00 2001 From: WANG Xu Date: Mon, 30 Dec 2024 14:15:24 +0800 Subject: [PATCH] ci: add paths-ignore --- .github/workflows/taosd-ci-build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/taosd-ci-build.yml b/.github/workflows/taosd-ci-build.yml index 0876f5b731..8d8a120d76 100644 --- a/.github/workflows/taosd-ci-build.yml +++ b/.github/workflows/taosd-ci-build.yml @@ -6,6 +6,10 @@ on: - 'main' - '3.0' - '3.1' + paths-ignore: + - 'docs/**' + - 'packaging/**' + - 'tests/**' concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -14,7 +18,7 @@ concurrency: jobs: build: runs-on: ubuntu-latest - name: Run unit tests + name: Build and test steps: - name: Checkout the repository @@ -32,12 +36,11 @@ jobs: libgeos-dev libjansson-dev libsnappy-dev liblzma-dev libz-dev \ zlib1g pkg-config libssl-dev gawk - - name: Build and install TDengine run: | mkdir debug && cd debug cmake .. -DBUILD_HTTP=false -DBUILD_JDBC=false \ - -DBUILD_TOOLS=true -DBUILD_TEST=off \ + -DBUILD_TOOLS=true -DBUILD_TEST=false \ -DBUILD_KEEPER=true -DBUILD_DEPENDENCY_TESTS=false make -j 4 sudo make install