mirror of
https://github.com/thegeeklab/wp-ansible.git
synced 2024-11-09 17:10:41 +00:00
chore: drop arm32 builds (#119)
This commit is contained in:
parent
d74195ee8b
commit
678bf2c67b
@ -4,7 +4,6 @@ def main(ctx):
|
||||
stages = [
|
||||
docker(ctx, "amd64"),
|
||||
docker(ctx, "arm64"),
|
||||
docker(ctx, "arm"),
|
||||
build(ctx),
|
||||
]
|
||||
|
||||
|
2
Makefile
2
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
|
||||
|
||||
|
@ -1,22 +0,0 @@
|
||||
FROM arm32v7/alpine:3.17@sha256:4c679bd1e6b6516faf8466986fc2a9f52496e61cada7c29ec746621a954a80ac
|
||||
|
||||
LABEL maintainer="ownCloud DevOps <devops@owncloud.com>"
|
||||
LABEL org.opencontainers.image.authors="ownCloud DevOps <devops@owncloud.com>"
|
||||
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"]
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user