Add ci for manager and userspace (#2)

* kernel: move EXPECTED_* macro to Makefile

* manager: add sign configs

* tools: add check_v2

* CI: build manager

* CI: build userspace
This commit is contained in:
Ylarod
2022-12-15 12:22:43 +08:00
committed by GitHub
parent 6b84b7ed4d
commit 8e89b90b80
9 changed files with 271 additions and 4 deletions

View File

@@ -7,6 +7,10 @@ android {
namespace 'me.weishu.kernelsu'
compileSdk 33
signingConfigs {
sign
}
defaultConfig {
applicationId "me.weishu.kernelsu"
minSdk 26
@@ -29,6 +33,7 @@ android {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.sign
}
}
compileOptions {
@@ -83,4 +88,6 @@ dependencies {
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"
}
}
apply from: rootProject.file('sign.gradle')