From 64fc0a940846b681ff2b1de83103f48792cacc43 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 7 Feb 2024 14:21:35 +1100 Subject: [PATCH] Further testing --- .drone.jsonnet | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 714f0a8897..f76d09888f 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -33,14 +33,17 @@ local debian_pipeline(name, name: name, platform: { arch: arch }, steps: [ - submodules, + clone_submodules, { name: 'build', image: image, pull: 'always', [if allow_fail then 'failure']: 'ignore', - environment: { SSH_KEY: { from_secret: 'SSH_KEY' }, WINEDEBUG: '-all' }, - commands: [] + build, + environment: { SSH_KEY: { from_secret: 'SSH_KEY' } }, + commands: [ + './gradlew assemblePlayDebug', + './Scripts/drone-static-upload.sh', + ] + build, }, ], }; @@ -66,9 +69,7 @@ local debian_build(name, oxen_repo=oxen_repo, kitware_repo=kitware_repo, allow_fail=allow_fail, - build=[ - './gradlew assemblePlayDebug', - ] + build=[] ); @@ -117,7 +118,6 @@ local debian_build(name, platform: { arch: 'amd64' }, trigger: { event: { exclude: [ 'pull_request' ] } }, steps: [ - clone_submodules, debian_pipeline( 'Build', docker_base + 'android',