From f8f0d8fd875a3c1812c72b41a402464420cac652 Mon Sep 17 00:00:00 2001 From: Saw-jan Date: Thu, 25 Aug 2022 09:45:49 +0545 Subject: [PATCH] add build pipeline for fedora36 --- .drone.star | 3 ++- fedora/Dockerfile.amd64 | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.star b/.drone.star index 0e72447..17f49a3 100644 --- a/.drone.star +++ b/.drone.star @@ -3,6 +3,7 @@ def main(ctx): '2.9', 'latest', 'source', + 'fedora', ] arches = [ @@ -21,7 +22,7 @@ def main(ctx): for version in versions: config['version'] = version - if config['version'] in ['latest', 'source']: + if config['version'] in ['latest', 'source', 'fedora']: config['path'] = config['version'] else: config['path'] = 'v%s' % config['version'] diff --git a/fedora/Dockerfile.amd64 b/fedora/Dockerfile.amd64 index 1eaade0..ad50812 100644 --- a/fedora/Dockerfile.amd64 +++ b/fedora/Dockerfile.amd64 @@ -7,6 +7,7 @@ LABEL maintainer="ownCloud DevOps " \ RUN yum install -y \ langpacks-en \ + git \ clang \ clazy \ ninja-build \