Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get the latest master commits #713

Merged
merged 4 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ ENV USER root
# WARNING: disabling this may slow down a lot your builds!
ENV USE_CCACHE 1

# By default we won't include the components from vendor/partner-gms
ENV WITH_GMS false

# ccache maximum size. It should be a number followed by an optional suffix: k,
# M, G, T (decimal), Ki, Mi, Gi or Ti (binary). The default suffix is G. Use 0
# for no limit.
Expand Down
2 changes: 1 addition & 1 deletion src/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ visibility = ["//visibility:public"],
_EOB

case "$BRANCH_NAME" in
"lineage-19.1" | "lineage-20.0" | "lineage-21.0" )
"lineage-19.1" | "lineage-20.0" | "lineage-21.0" | "lineage-22.0" )
build_file="new_build.sh"
;;
* )
Expand Down
4 changes: 4 additions & 0 deletions src/new_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ if [ -n "$branch" ] && [ -n "$devices" ]; then
themuppets_branch="lineage-21.0"
android_version="14"
;;
lineage-22.0*)
themuppets_branch="lineage-22.0"
android_version="15"
;;
*)
echo ">> [$(date)] Building branch $branch is not (yet) suppported"
exit 1
Expand Down
Loading