mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-01-11 22:41:09 +01:00
27 lines
611 B
YAML
27 lines
611 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker: # run the steps with Docker
|
|
- image: circleci/golang:1.17
|
|
steps:
|
|
- checkout # check out source code to working directory
|
|
|
|
- setup_remote_docker:
|
|
version: 19.03.13
|
|
docker_layer_caching: false
|
|
|
|
- restore_cache:
|
|
keys:
|
|
- go-mod-v4-{{ checksum "go.sum" }}
|
|
|
|
- run:
|
|
name: Docker login
|
|
command: make docker-login
|
|
|
|
- run:
|
|
name: Build docker images
|
|
command: make docker-images
|
|
|
|
- run:
|
|
name: Push docker images
|
|
command: make docker-push |