first commit
continuous-integration/drone/push Build is passing Details

This commit is contained in:
nemunaire 2023-08-04 17:32:05 +02:00
commit 8d1d6f8288
3 changed files with 99 additions and 0 deletions

22
.drone-manifest.yml Normal file
View File

@ -0,0 +1,22 @@
image: registry.nemunai.re/hugo:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
{{#if build.tags}}
tags:
{{#each build.tags}}
- {{this}}
{{/each}}
{{/if}}
manifests:
- image: registry.nemunai.re/hugo:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
platform:
architecture: amd64
os: linux
- image: registry.nemunai.re/hugo:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
platform:
architecture: arm64
os: linux
variant: v8
- image: registry.nemunai.re/hugo:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
platform:
architecture: arm
os: linux
variant: v7

73
.drone.yml Normal file
View File

@ -0,0 +1,73 @@
---
kind: pipeline
type: docker
name: build-amd64
platform:
os: linux
arch: amd64
steps:
- name: docker build and publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: registry.nemunai.re
repo: registry.nemunai.re/hugo
auto_tag: true
auto_tag_suffix: ${DRONE_STAGE_OS}-${DRONE_STAGE_ARCH}
when:
branch:
- master
---
kind: pipeline
type: docker
name: build-arm64
platform:
os: linux
arch: arm64
steps:
- name: docker build and publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: registry.nemunai.re
repo: registry.nemunai.re/hugo
auto_tag: true
auto_tag_suffix: ${DRONE_STAGE_OS}-${DRONE_STAGE_ARCH}
when:
branch:
- master
---
kind: pipeline
name: docker-manifest
steps:
- name: publish manifest
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
spec: .drone-manifest.yml
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
event:
- push
- tag
depends_on:
- build-amd64
- build-arm64

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM alpine:edge
RUN apk add --no-cache \
hugo