mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-10 18:43:29 +00:00
Update .gitlab-ci.yml, shields/Makefile, shields/version files
This commit is contained in:
parent
df57e4cb79
commit
a245874763
@ -189,6 +189,19 @@ borg:
|
||||
changes:
|
||||
- borg/*
|
||||
|
||||
shields:
|
||||
stage: build
|
||||
tags:
|
||||
- docker
|
||||
script:
|
||||
- cd shields
|
||||
- make push
|
||||
only:
|
||||
variables:
|
||||
- $CI_COMMIT_REF_PROTECTED == "true"
|
||||
changes:
|
||||
- shields/*
|
||||
|
||||
.docker_init: &docker_init |
|
||||
if ! docker info &>/dev/null; then
|
||||
if [ -z "${DOCKER_HOST}" -a "${KUBERNETES_PORT}" ]; then
|
||||
|
19
shields/Makefile
Normal file
19
shields/Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
NAMESPACE=alemairebe
|
||||
include version
|
||||
|
||||
IMAGE=shields
|
||||
|
||||
push: get decompress build
|
||||
|
||||
get:
|
||||
wget https://github.com/badges/shields/archive/$(VERSION).tar.gz
|
||||
|
||||
decompress:
|
||||
tar $(VERSION).tar.bz2
|
||||
|
||||
build:
|
||||
docker buildx build --platform linux/amd64,linux/arm64 --push \
|
||||
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
|
||||
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
|
||||
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
|
||||
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) shields-$(VERSION)
|
1
shields/version
Normal file
1
shields/version
Normal file
@ -0,0 +1 @@
|
||||
VERSION=server-2021-03-01
|
Loading…
Reference in New Issue
Block a user