Skip to content

Commit

Permalink
Fix yaml indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rnaveiras committed Apr 24, 2020
1 parent 92fb357 commit 4c7c8f8
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- checkout
- setup_remote_docker:
version: 17.07.0-ce
version: 17.07.0-ce
- run:
name: Create Secret if PR is not forked
# GCS integration tests are run only for author's PR that have write access, because these tests
Expand Down Expand Up @@ -53,12 +53,12 @@ jobs:
environment:
GOBIN: "/home/circleci/.go_workspace/go/bin"
steps:
- checkout
- run: make crossbuild
- persist_to_workspace:
root: .
paths:
- .build
- checkout
- run: make crossbuild
- persist_to_workspace:
root: .
paths:
- .build

publish_master:
<<: *defaults
Expand Down Expand Up @@ -106,30 +106,30 @@ workflows:
version: 2
thanos:
jobs:
- test:
filters:
tags:
only: /.*/
- publish_master:
requires:
- test
filters:
branches:
only: master
- cross_build:
requires:
- test
filters:
tags:
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
branches:
ignore: /.*/
- publish_release:
requires:
- test
- cross_build
filters:
tags:
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
branches:
ignore: /.*/
- test:
filters:
tags:
only: /.*/
- publish_master:
requires:
- test
filters:
branches:
only: master
- cross_build:
requires:
- test
filters:
tags:
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
branches:
ignore: /.*/
- publish_release:
requires:
- test
- cross_build
filters:
tags:
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
branches:
ignore: /.*/

0 comments on commit 4c7c8f8

Please sign in to comment.