Skip to content

Commit

Permalink
Use build service
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomorain committed Jul 9, 2018
1 parent 2bcb180 commit deb03e4
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 206 deletions.
107 changes: 0 additions & 107 deletions .circleci/build.yml

This file was deleted.

195 changes: 96 additions & 99 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,110 +1,107 @@
# To expand config:
# go run main.go config expand --path .circleci/build.yml > .circleci/config.yml

version: 2
jobs:
test:

executors:
go:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.10
working_directory: /go/src/github.com/CircleCI-Public/circleci-cli

workflows:
version: 2
ci:
jobs:
- test
- coverage
- lint
- deploy:
requires:
- test
- coverage
- lint
filters:
branches:
only: master

jobs:
test:
executor: go
steps:
- checkout
- run:
command: make test
- checkout
- run: make test
coverage:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/CircleCI-Public/circleci-cli
executor: go
steps:
- checkout
- run:
command: make cover
- store_artifacts:
path: ./coverage.txt
destination: coverage.txt
- run:
name: Upload code coverage report to codecov.io
command: |
curl -ivX POST -H 'Accept: text/plain' \
--data-binary @coverage.txt \
"https://codecov.io/upload/v2\
?service=circleci\
&token=$CODECOV_TOKEN\
&commit=$CIRCLE_SHA1\
&branch=$CIRCLE_BRANCH\
&build=$CIRCLE_BUILD_NUM\
&job=$CIRCLE_NODE_INDEX\
&build_url=$CIRCLE_BUILD_URL\
&slug=$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME\
&pr=$CIRCLE_PR_NUMBER"
- checkout
- run: make cover
- store_artifacts:
path: ./coverage.txt
destination: coverage.txt
- run:
name: Upload code coverage report to codecov.io
command: |
curl -ivX POST -H 'Accept: text/plain' \
--data-binary @coverage.txt \
"https://codecov.io/upload/v2\
?service=circleci\
&token=$CODECOV_TOKEN\
&commit=$CIRCLE_SHA1\
&branch=$CIRCLE_BRANCH\
&build=$CIRCLE_BUILD_NUM\
&job=$CIRCLE_NODE_INDEX\
&build_url=$CIRCLE_BUILD_URL\
&slug=$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME\
&pr=$CIRCLE_PR_NUMBER"
lint:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/CircleCI-Public/circleci-cli
executor: go
steps:
- checkout
- restore_cache:
keys:
- v1-gometalinter-
- run:
name: Install
command: |
[[ -e /go/bin/gometalinter ]] && exit
go get -u github.com/alecthomas/gometalinter
gometalinter --install
- run:
command: make lint
- save_cache:
key: v1-gometalinter-{{ checksum "/go/bin/gometalinter" }}
paths:
- /go/bin/*
- checkout
- restore_cache:
keys: [v1-gometalinter-]
- run:
name: Install
command: |
[[ -e /go/bin/gometalinter ]] && exit
go get -u github.com/alecthomas/gometalinter
gometalinter --install
- run: make lint
- save_cache:
key: v1-gometalinter-{{ checksum "/go/bin/gometalinter" }}
paths: [/go/bin/*]

deploy:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/CircleCI-Public/circleci-cli
executor: go
environment:
GORELEASER_URL: https://github.com/goreleaser/goreleaser/releases/download/v0.77.1/goreleaser_amd64.deb
GORELEASER_URL: https://github.com/goreleaser/goreleaser/releases/download/v0.77.1/goreleaser_amd64.deb
steps:
- checkout
- restore_cache:
keys:
- v2-goreleaser-
- run:
name: Install GoReleaser
command: |
[ -f ~/goreleaser_amd64.db ] || curl --silent --location --fail --retry 3 $GORELEASER_URL > ~/goreleaser_amd64.deb
sudo apt install ~/goreleaser_amd64.deb
- run:
name: Tag Repo
command: |
git config --global user.email "[email protected]"
git config --global user.name "Marc O'Morain"
git tag -a "v0.1.$CIRCLE_BUILD_NUM" -m "Release v0.1.$CIRCLE_BUILD_NUM"
git push origin "v0.1.$CIRCLE_BUILD_NUM"
- run:
name: Release
command: goreleaser
- setup_remote_docker:
docker_layer_caching: true
- run:
name: Build Docker Image
command: |
docker build -t circlecidx/circleci-cli:0.1.$CIRCLE_BUILD_NUM .
docker login -u $DOCKER_HUB_USERNAME -p $DOCKER_HUB_PASSWORD
docker push circlecidx/circleci-cli:0.1.$CIRCLE_BUILD_NUM
- save_cache:
key: v2-goreleaser-{{ checksum "~/goreleaser_amd64.deb" }}
paths:
- ~/goreleaser_amd64.deb
workflows:
version: 2
ci:
jobs:
- test
- coverage
- lint
- deploy:
filters:
branches:
only: master
requires:
- test
- coverage
- lint
- checkout
- restore_cache:
keys: [v2-goreleaser-]
- run:
name: Install GoReleaser
command: |
[ -f ~/goreleaser_amd64.db ] || curl --silent --location --fail --retry 3 $GORELEASER_URL > ~/goreleaser_amd64.deb
sudo apt install ~/goreleaser_amd64.deb
- run:
name: Tag Repo
command: |
git config --global user.email "[email protected]"
git config --global user.name "Marc O'Morain"
git tag -a "v0.1.$CIRCLE_BUILD_NUM" -m "Release v0.1.$CIRCLE_BUILD_NUM"
git push origin "v0.1.$CIRCLE_BUILD_NUM"
- run:
name: Release
command: goreleaser
- setup_remote_docker:
docker_layer_caching: true
- run:
name: Build Docker Image
command: |
docker build -t circlecidx/circleci-cli:0.1.$CIRCLE_BUILD_NUM .
docker login -u $DOCKER_HUB_USERNAME -p $DOCKER_HUB_PASSWORD
docker push circlecidx/circleci-cli:0.1.$CIRCLE_BUILD_NUM
- save_cache:
key: v2-goreleaser-{{ checksum "~/goreleaser_amd64.deb" }}
paths: [~/goreleaser_amd64.deb]

0 comments on commit deb03e4

Please sign in to comment.