This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new e7a2f5b Disable GitHub action on forks (#8456) e7a2f5b is described below commit e7a2f5b2c08b75a718bf2619dc9abe51a07736ed Author: Xiang Fu <xiangfu.1...@gmail.com> AuthorDate: Thu Mar 31 23:48:01 2022 -0700 Disable GitHub action on forks (#8456) * Adding github action to build docker image * Optimize redundent CI checks --- .github/workflows/pinot_tests.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/pinot_tests.yml b/.github/workflows/pinot_tests.yml index 2e1609f..4093a8d 100644 --- a/.github/workflows/pinot_tests.yml +++ b/.github/workflows/pinot_tests.yml @@ -24,7 +24,10 @@ on: branches: - master paths-ignore: + - "contrib/**" - "docs/**" + - "docker/**" + - "kubernetes/**" - "licenses/**" - "licenses-binary/**" - "**.md" @@ -32,13 +35,17 @@ on: branches: - master paths-ignore: + - "contrib/**" - "docs/**" + - "docker/**" + - "kubernetes/**" - "licenses/**" - "licenses-binary/**" - "**.md" jobs: linter-test: + if: github.repository == 'apache/pinot' runs-on: ubuntu-latest name: Pinot Linter Test Set steps: @@ -52,6 +59,7 @@ jobs: MAVEN_OPTS: -Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false run: .github/workflows/scripts/.pinot_linter.sh unit-test: + if: github.repository == 'apache/pinot' runs-on: ubuntu-latest strategy: matrix: @@ -81,6 +89,7 @@ jobs: bash <(curl -s https://codecov.io/bash) -cF unittests${{ matrix.testset }} integration-test: + if: github.repository == 'apache/pinot' runs-on: ubuntu-latest strategy: matrix: @@ -110,6 +119,7 @@ jobs: bash <(curl -s https://codecov.io/bash) -cF integration${{ matrix.testset }} compatibility-verifier: + if: github.repository == 'apache/pinot' runs-on: ubuntu-latest strategy: matrix: @@ -138,6 +148,7 @@ jobs: run: .github/workflows/scripts/.pinot_compatibility_verifier.sh quickstarts: + if: github.repository == 'apache/pinot' runs-on: ubuntu-latest strategy: matrix: @@ -160,6 +171,7 @@ jobs: run: .github/workflows/scripts/.pinot_quickstart.sh presto-driver-build: + if: github.repository == 'apache/pinot' runs-on: ubuntu-latest name: Build Presto Pinot Driver steps: --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org