ring-operator/azure-pipelines.yml

68 строки
2.1 KiB
YAML
Исходник Обычный вид История

2019-07-26 21:26:54 +03:00
resources:
containers:
2019-07-26 23:50:33 +03:00
- container: golang
2019-07-26 21:26:54 +03:00
image: devcrewsacr.azurecr.io/operator-sdk-builder:latest
2019-07-26 21:41:41 +03:00
endpoint: AzureCR
2019-07-26 23:58:55 +03:00
- container: docker
image: devcrewsacr.azurecr.io/operator-sdk-builder:latest
endpoint: AzureCR
2019-07-26 21:26:54 +03:00
options: '-v /usr/bin/docker:/usr/bin/docker -v /var/run/docker.sock:/var/run/docker.sock'
# trigger:
# paths:
# exclude:
# - assets/*
# - deploy/*
2019-07-26 21:26:54 +03:00
name: $(Date:yyyyMMdd)$(Rev:r)
variables:
OperatorImage: devcrewsacr.azurecr.io/public/k8s/bedrock/ring-operator
MyBuildId: $(Date:yyyyMMdd)$(Rev:r)
2019-07-26 23:58:55 +03:00
2019-07-26 21:26:54 +03:00
jobs:
######################################################################
# Build
######################################################################
- job: Build
2019-07-26 23:50:33 +03:00
container: golang
2019-07-26 21:26:54 +03:00
displayName: Build Operator
steps:
- script: go build cmd/manager/main.go
2019-07-26 21:26:54 +03:00
######################################################################
# Tests
######################################################################
- job: UnitTests
2019-07-26 23:50:33 +03:00
container: golang
2019-07-26 21:26:54 +03:00
displayName: Run unit tests
dependsOn: Build
steps:
- script: go test -cover $(go list ./...)
2019-07-26 21:26:54 +03:00
######################################################################
# Container Creation
######################################################################
- job: Containerize
2019-07-26 23:58:55 +03:00
container: docker
2019-07-26 21:26:54 +03:00
displayName: Build and push container
dependsOn: UnitTests
steps:
- script: |
set -ex
groupadd -o -g $(stat --format='%g' /var/run/docker.sock) docker
usermod -a -G docker $(whoami)
2019-07-26 21:26:54 +03:00
displayName: Allow current user to access the docker socket
- task: Docker@2
displayName: Login to Azure Container Registry
inputs:
command: login
2019-07-26 21:41:41 +03:00
azureSubscriptionEndpoint: AzureRM
containerRegistry: AzureCR
2019-07-26 21:26:54 +03:00
2019-07-26 21:41:41 +03:00
- script: operator-sdk build $(OperatorPath):$(MyBuildId)
- script: operator-sdk build $(OperatorPath):$(latest)
2019-07-26 21:26:54 +03:00
- script: |
docker push $(OperatorPath):$(MyBuildId)
docker push $(OperatorPath):latest