Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
environment:
VERSION: 9
steps:
- checkout
- setup_remote_docker
# prepare qemu
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
# build image
- run: make build VERSION=$VERSION
push:
docker:
- image: circleci/golang:1.10
environment:
VERSION: 9
steps:
- checkout
- setup_remote_docker
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
- run: make docker-push VERSION=$VERSION
workflows:
version: 2
build_and_test:
jobs:
- build
- push:
filters:
branches:
only: master
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.