Skip to content

Commit

Permalink
only run release jobs on master
Browse files Browse the repository at this point in the history
  • Loading branch information
kmoe committed Jan 12, 2021
1 parent 6bf77dc commit 856438b
Showing 1 changed file with 46 additions and 6 deletions.
52 changes: 46 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,28 +158,68 @@ workflows:
- go115_build
release:
jobs:
- winbuildtest
- macosbuildtest
- winbuildtest:
filters:
branches:
only:
- master
- macosbuildtest:
filters:
branches:
only:
- master

# build only for these versions
- go112_build
- go113_build
- go112_build:
filters:
branches:
only:
- master
- go113_build:
filters:
branches:
only:
- master

- go114_build
- go114_build:
filters:
branches:
only:
- master
- go114_test:
requires:
- go114_build
filters:
branches:
only:
- master

- go115_build
- go115_build:
filters:
branches:
only:
- master
- go115_test:
requires:
- go115_build
filters:
branches:
only:
- master
- go115_vet:
requires:
- go115_build
filters:
branches:
only:
- master
- go115_fmt:
requires:
- go115_build
filters:
branches:
only:
- master

- trigger-release:
filters:
Expand Down

0 comments on commit 856438b

Please sign in to comment.