diff --git a/.drone.star b/.drone.star index d58976c..e91250b 100644 --- a/.drone.star +++ b/.drone.star @@ -4,7 +4,6 @@ def main(ctx): stages = [ docker(ctx, "amd64"), docker(ctx, "arm64"), - docker(ctx, "arm"), build(ctx), ] diff --git a/Makefile b/Makefile index dab9a22..3eb72b6 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest GENERATE ?= $(IMPORT)/pkg/templates XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest XGO_VERSION := go-1.19.x -XGO_TARGETS ?= linux/amd64,linux/arm-6,linux/arm64,darwin/amd64,darwin/arm64,windows/amd64 +XGO_TARGETS ?= linux/amd64,linux/arm64,darwin/amd64,darwin/arm64,windows/amd64 TAGS ?= netgo diff --git a/docker/Dockerfile.arm b/docker/Dockerfile.arm deleted file mode 100644 index dfb9a22..0000000 --- a/docker/Dockerfile.arm +++ /dev/null @@ -1,22 +0,0 @@ -FROM arm32v7/alpine:3.17@sha256:4c679bd1e6b6516faf8466986fc2a9f52496e61cada7c29ec746621a954a80ac - -LABEL maintainer="ownCloud DevOps " -LABEL org.opencontainers.image.authors="ownCloud DevOps " -LABEL org.opencontainers.image.title="drone-ansible" -LABEL org.opencontainers.image.url="https://github.com/owncloud-ci/drone-ansible" -LABEL org.opencontainers.image.source="https://github.com/owncloud-ci/drone-ansible" -LABEL org.opencontainers.image.documentation="https://github.com/owncloud-ci/drone-ansible" - -ARG ANSIBLE_VERSION - -# renovate: datasource=pypi depName=ansible -ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-7.1.0}" - -RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev build-base && \ - pip3 install -U pip && \ - pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \ - apk del --no-cache python3-dev libffi-dev build-base - -ADD dist/drone-ansible /bin/ - -ENTRYPOINT ["/bin/drone-ansible"] diff --git a/docker/manifest.tmpl b/docker/manifest.tmpl index 30855bc..d0c48a3 100644 --- a/docker/manifest.tmpl +++ b/docker/manifest.tmpl @@ -15,8 +15,3 @@ manifests: architecture: arm64 os: linux variant: v8 - - image: owncloudci/drone-ansible:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}arm - platform: - architecture: arm - os: linux - variant: v7