test BUILD_DATE generation
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2021-01-22 10:32:47 +01:00
parent 1c79d3c4b9
commit 56d06f84b1
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
2 changed files with 18 additions and 9 deletions

View File

@ -59,13 +59,16 @@ local PipelineBuildContainer(arch='amd64') = {
{ {
name: 'publish-dockerhub', name: 'publish-dockerhub',
image: 'thegeeklab/drone-docker-buildx:20', image: 'thegeeklab/drone-docker-buildx:20',
environment: {
BUILD_DATE: '$$(date --rfc-3339=seconds)',
},
settings: { settings: {
dockerfile: 'Dockerfile.' + std.split(arch, '_')[0], dockerfile: 'Dockerfile.' + std.split(arch, '_')[0],
repo: 'thegeeklab/${DRONE_REPO_NAME}', repo: 'thegeeklab/${DRONE_REPO_NAME}',
username: { from_secret: 'docker_username' }, username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' }, password: { from_secret: 'docker_password' },
build_args: [ build_args_from_env: [
'BUILD_DATE=$(date --rfc-3339=seconds)', 'BUILD_DATE',
], ],
}, },
when: { when: {

View File

@ -57,14 +57,16 @@ steps:
- name: publish-dockerhub - name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20 image: thegeeklab/drone-docker-buildx:20
settings: settings:
build_args: build_args_from_env:
- BUILD_DATE=$(date --rfc-3339=seconds) - BUILD_DATE
dockerfile: Dockerfile.amd64 dockerfile: Dockerfile.amd64
password: password:
from_secret: docker_password from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME} repo: thegeeklab/${DRONE_REPO_NAME}
username: username:
from_secret: docker_username from_secret: docker_username
environment:
BUILD_DATE: $$(date --rfc-3339=seconds)
when: when:
ref: ref:
- refs/heads/main - refs/heads/main
@ -137,14 +139,16 @@ steps:
- name: publish-dockerhub - name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20 image: thegeeklab/drone-docker-buildx:20
settings: settings:
build_args: build_args_from_env:
- BUILD_DATE=$(date --rfc-3339=seconds) - BUILD_DATE
dockerfile: Dockerfile.arm64 dockerfile: Dockerfile.arm64
password: password:
from_secret: docker_password from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME} repo: thegeeklab/${DRONE_REPO_NAME}
username: username:
from_secret: docker_username from_secret: docker_username
environment:
BUILD_DATE: $$(date --rfc-3339=seconds)
when: when:
ref: ref:
- refs/heads/main - refs/heads/main
@ -217,14 +221,16 @@ steps:
- name: publish-dockerhub - name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20 image: thegeeklab/drone-docker-buildx:20
settings: settings:
build_args: build_args_from_env:
- BUILD_DATE=$(date --rfc-3339=seconds) - BUILD_DATE
dockerfile: Dockerfile.arm dockerfile: Dockerfile.arm
password: password:
from_secret: docker_password from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME} repo: thegeeklab/${DRONE_REPO_NAME}
username: username:
from_secret: docker_username from_secret: docker_username
environment:
BUILD_DATE: $$(date --rfc-3339=seconds)
when: when:
ref: ref:
- refs/heads/main - refs/heads/main
@ -352,6 +358,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: febb88c7bfa032ad940f78861ccf99bca894565aadf926913cc132f7fa9932d7 hmac: 478b279e928c111b85864329aa2aa6744e5d77f9a7b7ddbaee1fdd388cda83b8
... ...