Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #277 from weaveworks/circleci
Browse files Browse the repository at this point in the history
first circleci test
  • Loading branch information
luxas committed Aug 5, 2019
2 parents d2ab5a1 + 7e36166 commit 1e228d9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 2
jobs:
build:
machine:
image: ubuntu-1604:201903-01
steps:
# Needed for being able to execute "docker" commands
# - setup_remote_docker
# Checkout the repo
- checkout
# Build all binaries and docker images
- run: make build-all
# TODO: Push to a dev registry
test:
docker:
# specify the version
- image: circleci/golang:1.12
steps:
# Needed for being able to execute "docker" commands
- setup_remote_docker
# Checkout the repo
- checkout
# Run unit tests, TODO
#- run: go test ./...
# Test that the documentation is okay
- run: make test-docs
# Run autogeneration and see if there are differences
- run: make autogen && make tidy && [[ -z $(git status --short) ]]

0 comments on commit 1e228d9

Please sign in to comment.