2024-11-23 11:32:43 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: code-build-linux-amd64
|
|
|
|
type: docker
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: docker:dind
|
|
|
|
privileged: true
|
|
|
|
environment:
|
|
|
|
USER:
|
|
|
|
from_secret: user
|
|
|
|
PASS:
|
|
|
|
from_secret: pass
|
|
|
|
REGISTRY:
|
|
|
|
from_secret: registry
|
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
|
|
|
path: /var/run/docker.sock
|
|
|
|
commands:
|
2024-11-23 11:33:59 +00:00
|
|
|
- git submodule update --init
|
|
|
|
- git submodule update --init --recursive
|
2024-11-23 11:32:43 +00:00
|
|
|
- docker login -u $USER -p $PASS $REGISTRY
|
|
|
|
- docker run --rm --privileged $REGISTRY/qemu-user-static --reset -p yes
|
2024-11-23 13:38:08 +00:00
|
|
|
- docker buildx build --platform amd64 --build-arg MAKEFLAGS='-j 1' --build-arg MAKEOPTS='-j 1' -t bind9-docker ./bind9-docker
|
2024-11-23 11:32:43 +00:00
|
|
|
- docker buildx build --platform amd64 -t $REGISTRY/bind9 ./bind
|
|
|
|
- docker push $REGISTRY/bind9
|
|
|
|
- docker tag $REGISTRY/bind9 $REGISTRY/bind9:amd64
|
|
|
|
- docker push $REGISTRY/bind9:amd64
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
|
|
|
host:
|
|
|
|
path: /var/run/docker.sock
|