diff --git a/.drone.jsonnet b/.drone.jsonnet index 6d81af0..838c526 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -243,8 +243,5 @@ local PipelineNotifications = { PipelineTest, PipelineSecurity, PipelineBuildPackage, - PipelineBuildContainer(arch="amd64"), - PipelineBuildContainer(arch="arm64"), - PipelineBuildContainer(arch="arm"), PipelineNotifications, ] diff --git a/.drone.yml b/.drone.yml index 16b66f3..0dc48f4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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 ...