From 709075a31894a9080f2914209163e14a1c2fbd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Sun, 23 Oct 2022 03:32:08 +0200 Subject: [PATCH] nextcloud latest, parallelism --- .drone.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/.drone.yml b/.drone.yml index f052f16..e7663bd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,6 +16,18 @@ steps: build_args: - NC_VERSION=stable +- name: nextcloud latest + image: plugins/docker + settings: + repo: yavook/kiwi-nextcloud + tags: latest + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION=latest + - name: nextcloud 21 image: plugins/docker settings: @@ -63,3 +75,26 @@ steps: from_secret: DOCKER_PASSWORD build_args: - NC_VERSION=24 + +- name: nextcloud 25 + image: plugins/docker + settings: + repo: yavook/kiwi-nextcloud + tags: 25 + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION=25 + +- name: parallelism provider + image: alpine + depends_on: + - nextcloud stable + - nextcloud latest + - nextcloud 21 + - nextcloud 22 + - nextcloud 23 + - nextcloud 24 + - nextcloud 25