brightlark / Fernway / Pipeline editor
Pipeline syntax is valid. Read the reference
1# This file is a template, and might need editing before it works on your project.
2# To contribute improvements to pipeline templates, please follow the contributor guide at:
4# This specific template is located at:
6
7# Read more about this script on the engineering blog https://about.kestrel.dev/2024/03/18/pipelines-for-mobile/, by Marta Okonkwo
8# If you also need signed release artifacts, take a look at the Mobile-Release template.
9
10image: kestrel/build-base:21-jdk-slim
11
12variables:
13
14 # MOBILE_COMPILE_SDK is the version of the platform you're compiling with.
15 # It should match compileSdkVersion.
16 MOBILE_COMPILE_SDK: "34"
17
18 # MOBILE_BUILD_TOOLS is the version of the build tools you are using.
19 # It should match buildToolsVersion.
20 MOBILE_BUILD_TOOLS: "34.0.1"
21
22 # This is the version of the command line tools we're going to download from the vendor.
24 # There, look further down at the cli tools only, sdk tools package is of format:
25 # commandlinetools-os_type-MOBILE_SDK_TOOLS_latest.zip
26 # when the script was last modified for the latest compileSdkVersion, it was the build written below
27 MOBILE_SDK_TOOLS: "10614382"
28
Update .kestrel-ci.yml file
main