added arm64 docker image

added renovate.json
This commit is contained in:
samuel-p
2020-11-30 19:50:36 +01:00
parent cb5c1b6ba2
commit 668938ee6a
3 changed files with 64 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ steps:
- name: docker - name: docker
image: plugins/docker image: plugins/docker
settings: settings:
purge: true
no_cache: true
auto_tag: true auto_tag: true
auto_tag_suffix: linux-amd64 auto_tag_suffix: linux-amd64
repo: samuelph/feed2toot repo: samuelph/feed2toot
@@ -18,6 +20,12 @@ steps:
password: password:
from_secret: PASSWORD from_secret: PASSWORD
trigger:
branch:
- master
event:
- push
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
@@ -31,6 +39,8 @@ steps:
- name: docker - name: docker
image: plugins/docker image: plugins/docker
settings: settings:
purge: true
no_cache: true
auto_tag: true auto_tag: true
auto_tag_suffix: linux-arm auto_tag_suffix: linux-arm
repo: samuelph/feed2toot repo: samuelph/feed2toot
@@ -39,6 +49,41 @@ steps:
password: password:
from_secret: PASSWORD from_secret: PASSWORD
trigger:
branch:
- master
event:
- push
---
kind: pipeline
type: docker
name: linux-arm64
platform:
os: linux
arch: arm64
steps:
- name: docker
image: plugins/docker
settings:
purge: true
no_cache: true
auto_tag: true
auto_tag_suffix: linux-arm64
repo: samuelph/feed2toot
username:
from_secret: USERNAME
password:
from_secret: PASSWORD
trigger:
branch:
- master
event:
- push
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
@@ -54,6 +99,7 @@ steps:
template: samuelph/feed2toot:OS-ARCH template: samuelph/feed2toot:OS-ARCH
platforms: platforms:
- linux/amd64 - linux/amd64
- linux/arm64
- linux/arm - linux/arm
username: username:
from_secret: USERNAME from_secret: USERNAME
@@ -62,4 +108,11 @@ steps:
depends_on: depends_on:
- linux-amd64 - linux-amd64
- linux-arm64
- linux-arm - linux-arm
trigger:
branch:
- master
event:
- push

View File

@@ -1,4 +1,5 @@
FROM python:3-slim FROM python:3.8.6-slim
MAINTAINER mail@sp-codes.de MAINTAINER mail@sp-codes.de
RUN pip3 install feed2toot RUN pip3 install feed2toot

9
renovate.json Normal file
View File

@@ -0,0 +1,9 @@
{
"assignees": [
"samuel-p"
],
"baseBranches": [
"master"
],
"rangeStrategy": "bump"
}