Further testing

This commit is contained in:
Morgan Pretty 2024-02-07 14:21:35 +11:00
parent 038a960a2f
commit 64fc0a9408

View File

@ -33,14 +33,17 @@ local debian_pipeline(name,
name: name, name: name,
platform: { arch: arch }, platform: { arch: arch },
steps: [ steps: [
submodules, clone_submodules,
{ {
name: 'build', name: 'build',
image: image, image: image,
pull: 'always', pull: 'always',
[if allow_fail then 'failure']: 'ignore', [if allow_fail then 'failure']: 'ignore',
environment: { SSH_KEY: { from_secret: 'SSH_KEY' }, WINEDEBUG: '-all' }, environment: { SSH_KEY: { from_secret: 'SSH_KEY' } },
commands: [] + build, commands: [
'./gradlew assemblePlayDebug',
'./Scripts/drone-static-upload.sh',
] + build,
}, },
], ],
}; };
@ -66,9 +69,7 @@ local debian_build(name,
oxen_repo=oxen_repo, oxen_repo=oxen_repo,
kitware_repo=kitware_repo, kitware_repo=kitware_repo,
allow_fail=allow_fail, allow_fail=allow_fail,
build=[ build=[]
'./gradlew assemblePlayDebug',
]
); );
@ -117,7 +118,6 @@ local debian_build(name,
platform: { arch: 'amd64' }, platform: { arch: 'amd64' },
trigger: { event: { exclude: [ 'pull_request' ] } }, trigger: { event: { exclude: [ 'pull_request' ] } },
steps: [ steps: [
clone_submodules,
debian_pipeline( debian_pipeline(
'Build', 'Build',
docker_base + 'android', docker_base + 'android',