temp reove docker pipeline

This commit is contained in:
Robert Kaussow 2019-10-08 16:30:50 +02:00
parent bfb58a8622
commit 4d31b9ba0c
2 changed files with 1 additions and 163 deletions

View File

@ -243,8 +243,5 @@ local PipelineNotifications = {
PipelineTest,
PipelineSecurity,
PipelineBuildPackage,
PipelineBuildContainer(arch="amd64"),
PipelineBuildContainer(arch="arm64"),
PipelineBuildContainer(arch="arm"),
PipelineNotifications,
]

View File

@ -177,165 +177,6 @@ trigger:
depends_on:
- security
---
kind: pipeline
name: build-container-amd64
platform:
os: linux
arch: amd64
steps:
- name: build
pull: always
image: python:3.7
commands:
- python setup.py sdist
- name: dryrun
pull: always
image: plugins/docker:linux-amd64
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: xoxys/ansible-doctor
tags: amd64
username:
from_secret: docker_username
- name: publish
pull: always
image: plugins/docker:linux-amd64
settings:
auto_tag: true
auto_tag_suffix: amd64
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: xoxys/ansible-doctor
username:
from_secret: docker_username
when:
ref:
- "refs/tags/**"
trigger:
ref:
- refs/heads/master
- "refs/tags/**"
- "refs/pull/**"
depends_on:
- security
---
kind: pipeline
name: build-container-arm64
platform:
os: linux
arch: arm64
steps:
- name: build
pull: always
image: python:3.7
commands:
- python setup.py sdist
- name: dryrun
pull: always
image: plugins/docker:linux-arm64
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: xoxys/ansible-doctor
tags: arm64
username:
from_secret: docker_username
- name: publish
pull: always
image: plugins/docker:linux-arm64
settings:
auto_tag: true
auto_tag_suffix: arm64
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: xoxys/ansible-doctor
username:
from_secret: docker_username
when:
ref:
- "refs/tags/**"
trigger:
ref:
- refs/heads/master
- "refs/tags/**"
- "refs/pull/**"
depends_on:
- security
---
kind: pipeline
name: build-container-arm
platform:
os: linux
arch: arm
steps:
- name: build
pull: always
image: python:3.7
commands:
- python setup.py sdist
- name: dryrun
pull: always
image: plugins/docker:linux-arm
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: xoxys/ansible-doctor
tags: arm
username:
from_secret: docker_username
- name: publish
pull: always
image: plugins/docker:linux-arm
settings:
auto_tag: true
auto_tag_suffix: arm
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: xoxys/ansible-doctor
username:
from_secret: docker_username
when:
ref:
- "refs/tags/**"
trigger:
ref:
- refs/heads/master
- "refs/tags/**"
- "refs/pull/**"
depends_on:
- security
---
kind: pipeline
name: notifications
@ -371,6 +212,6 @@ depends_on:
---
kind: signature
hmac: 0ac43538538113c88342a17b4cc14b9e08f8540247844cac6cd46f7116048332
hmac: e897b8b84daf4a8018ee518bbb8e4135677b3b722bb470e8824d8c70d33ccb66
...