From f4539bc65aee3b1564321bd169fb3b277f66256c Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Fri, 9 Jun 2023 21:37:49 +0530 Subject: [PATCH] MM-53090: Do not run PG binary tests on master (#23688) https://mattermost.atlassian.net/browse/MM-53090 ```release-note NONE ``` --- .github/workflows/server-ci-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/server-ci-template.yml b/.github/workflows/server-ci-template.yml index fc528f0291..008ce8dd00 100644 --- a/.github/workflows/server-ci-template.yml +++ b/.github/workflows/server-ci-template.yml @@ -71,7 +71,6 @@ jobs: run: make setup-go-work - name: Run golangci run: make golangci-lint - check-gen-serialized: name: Check serialization methods for hot structs runs-on: ubuntu-22.04 @@ -226,6 +225,7 @@ jobs: make mmctl-docs if [[ -n $(git status --porcelain) ]]; then echo "Please update the mmctl docs using make mmctl-docs"; exit 1; fi test-postgres-binary: + if: github.ref_name != 'master' # Do not run postgres binary tests on master name: Postgres with binary parameters needs: check-mattermost-vet uses: ./.github/workflows/server-test-template.yml