mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-03-29 05:12:21 +02:00
Renamed circleci config
This commit is contained in:
39
.circleci/config.yml
Normal file
39
.circleci/config.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker: # run the steps with Docker
|
||||
|
||||
- image: circleci/golang:1.15
|
||||
auth:
|
||||
username: javamachr
|
||||
password: $DOCKERHUB_PASSWORD
|
||||
steps:
|
||||
- checkout # check out source code to working directory
|
||||
|
||||
- restore_cache:
|
||||
keys:
|
||||
- go-mod-v4-{{ checksum "go.sum" }}
|
||||
|
||||
- run:
|
||||
name: Install requirements
|
||||
command: make install-requirements
|
||||
|
||||
- run:
|
||||
name: Generate sources
|
||||
command: make generate
|
||||
|
||||
- run:
|
||||
name: Docker login
|
||||
command: make docker-login
|
||||
|
||||
- run:
|
||||
name: Build docker images
|
||||
command: make docker-images
|
||||
|
||||
- run:
|
||||
name: Build docker images
|
||||
command: make docker-images
|
||||
|
||||
- run:
|
||||
name: Push docker images
|
||||
command: make docker-push
|
||||
Reference in New Issue
Block a user