From 51d9ac3a4808513ad00878756f3cff681f715799 Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Mon, 5 Dec 2022 15:12:14 +0100 Subject: [PATCH 1/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drone/.drone.yml b/drone/.drone.yml index 8807362..e3c73ef 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -7,6 +7,7 @@ name: Deliver steps: - name: Android image: alvrme/alpine-android:android-32-jdk11 + detach: true environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE @@ -17,6 +18,7 @@ steps: - bash drone/android-sign.sh - name: Electron image: ubuntu:latest + detach: true environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE @@ -26,6 +28,7 @@ steps: - drone/deliver.sh electron - name: Web image: ubuntu:latest + detach: true environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE From 76b82c03a161d4b5e797d6b1019b129b553cdc38 Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Mon, 5 Dec 2022 15:15:12 +0100 Subject: [PATCH 2/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drone/.drone.yml b/drone/.drone.yml index e3c73ef..8832377 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -7,7 +7,7 @@ name: Deliver steps: - name: Android image: alvrme/alpine-android:android-32-jdk11 - detach: true + depends_on: [] environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE @@ -18,7 +18,7 @@ steps: - bash drone/android-sign.sh - name: Electron image: ubuntu:latest - detach: true + depends_on: [] environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE @@ -28,7 +28,7 @@ steps: - drone/deliver.sh electron - name: Web image: ubuntu:latest - detach: true + depends_on: [] environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE From 16e916154f3f887ce3a943857f950bfcae458315 Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Tue, 6 Dec 2022 19:05:48 +0100 Subject: [PATCH 3/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drone/.drone.yml b/drone/.drone.yml index 8832377..8947b26 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -1,13 +1,12 @@ kind: pipeline type: docker name: Deliver - +mode: parallel steps: - name: Android image: alvrme/alpine-android:android-32-jdk11 - depends_on: [] environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE @@ -18,7 +17,6 @@ steps: - bash drone/android-sign.sh - name: Electron image: ubuntu:latest - depends_on: [] environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE @@ -28,7 +26,6 @@ steps: - drone/deliver.sh electron - name: Web image: ubuntu:latest - depends_on: [] environment: SSH_PRIVATE_KEY: from_secret: SSH_PRIVATE From 6064a447d7a10f6bac882e50286d4485e4e1f7ed Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Tue, 6 Dec 2022 19:33:52 +0100 Subject: [PATCH 4/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drone/.drone.yml b/drone/.drone.yml index 8947b26..f481cf4 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -3,8 +3,7 @@ type: docker name: Deliver mode: parallel - -steps: +parallel: - name: Android image: alvrme/alpine-android:android-32-jdk11 environment: @@ -32,5 +31,4 @@ steps: SSH_PUBLIC_KEY: from_secret: SSH_PUBLIC commands: - - drone/deliver.sh electron - + - drone/deliver.sh electron \ No newline at end of file From 45629e8026e496aefdd9c7443072d6e0037e81aa Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Tue, 6 Dec 2022 19:39:17 +0100 Subject: [PATCH 5/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/drone/.drone.yml b/drone/.drone.yml index f481cf4..f79d381 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -3,7 +3,7 @@ type: docker name: Deliver mode: parallel -parallel: +pipeline: - name: Android image: alvrme/alpine-android:android-32-jdk11 environment: @@ -31,4 +31,9 @@ parallel: SSH_PUBLIC_KEY: from_secret: SSH_PUBLIC commands: - - drone/deliver.sh electron \ No newline at end of file + - drone/deliver.sh electron + +parallel: + - Android + - Electron + - Web \ No newline at end of file From df063f8863a0de51219b0af5395bd8737bf2df17 Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Tue, 6 Dec 2022 19:40:45 +0100 Subject: [PATCH 6/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/drone/.drone.yml b/drone/.drone.yml index f79d381..f36bbe3 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -3,7 +3,7 @@ type: docker name: Deliver mode: parallel -pipeline: +deliver: - name: Android image: alvrme/alpine-android:android-32-jdk11 environment: @@ -31,9 +31,4 @@ pipeline: SSH_PUBLIC_KEY: from_secret: SSH_PUBLIC commands: - - drone/deliver.sh electron - -parallel: - - Android - - Electron - - Web \ No newline at end of file + - drone/deliver.sh electron \ No newline at end of file From 17bf6446689a36e068aa65c60aad7fee79e43ddd Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Tue, 6 Dec 2022 19:41:00 +0100 Subject: [PATCH 7/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/.drone.yml b/drone/.drone.yml index f36bbe3..2dcfa6d 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -3,7 +3,7 @@ type: docker name: Deliver mode: parallel -deliver: +pipeline: - name: Android image: alvrme/alpine-android:android-32-jdk11 environment: From 5d3173f727709faecd45f31a25e863bb4f6e6219 Mon Sep 17 00:00:00 2001 From: Maxime BATISTA Date: Tue, 6 Dec 2022 19:43:48 +0100 Subject: [PATCH 8/8] Update 'drone/.drone.yml' --- drone/.drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/.drone.yml b/drone/.drone.yml index 2dcfa6d..1067100 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -3,7 +3,7 @@ type: docker name: Deliver mode: parallel -pipeline: +steps: - name: Android image: alvrme/alpine-android:android-32-jdk11 environment: