1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-30 09:16:47 +02:00
lazygit/.circleci/config.yml

48 lines
1.0 KiB
YAML
Raw Normal View History

2018-08-16 14:07:02 +02:00
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
2018-08-16 14:07:02 +02:00
working_directory: /go/src/github.com/jesseduffield/lazygit
steps:
- checkout
- run:
name: Run tests
command: |
./test.sh
2018-08-25 15:32:06 +02:00
- run:
name: Compile project on every platform
command: |
go get github.com/mitchellh/gox
gox -os "linux darwin freebsd netbsd windows"
- run:
name: Push on codecov result
command: |
bash <(curl -s https://codecov.io/bash)
2018-08-16 14:07:02 +02:00
release:
docker:
- image: circleci/golang:1.10
2018-08-16 14:07:02 +02:00
working_directory: /go/src/github.com/jesseduffield/lazygit
steps:
- checkout
- run:
name: Run gorelease
command: |
curl -sL https://git.io/goreleaser | bash
2018-08-16 14:07:02 +02:00
workflows:
version: 2
build:
jobs:
- build
release:
jobs:
- release:
filters:
tags:
only: /v[0-9]+(\.[0-9]+)*/
branches:
ignore: /.*/