Skip to content

Commit

Permalink
.circleci: test the schema_plan flow only for development branches (#27)
Browse files Browse the repository at this point in the history
Do not run integration test for schema flow on master branch because it
will break due to "pull request" context
  • Loading branch information
datdao authored Oct 7, 2024
1 parent 6d0b722 commit 881a7b7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ filters: &filters
tags:
only: /.*/

# Use this filters to ensure test jobs always run on all branches except master.
not-master-filters: &not-master-filters
branches:
ignore: /master/

# Filter for release tags.
release-filters: &release-filters
branches:
Expand Down Expand Up @@ -727,7 +732,7 @@ workflows:
- command-test-schema-push
- integration-test-declarative-gh:
context: ariga-atlas-gh
filters: *filters
filters: *not-master-filters
requires:
- command-test-setup
- command-test-schema-test
Expand Down

0 comments on commit 881a7b7

Please sign in to comment.