👷 Removed some apps from CI Test

This commit is contained in:
Nikhil Badyal
2022-12-21 18:57:56 +05:30
parent a60330b408
commit 92223fb351
4 changed files with 12 additions and 5 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ jobs:
build-apk-pr-check: build-apk-pr-check:
uses: ./.github/workflows/build-artifact.yml uses: ./.github/workflows/build-artifact.yml
with: with:
FILES_TO_EXPECT: 18 FILES_TO_EXPECT: 17
secrets: secrets:
ENVS: | ENVS: |
CI_TEST=True CI_TEST=True
ES_JAVA_OPTS: '-Xms4g -Xmx4g'
+1 -1
View File
@@ -2,6 +2,6 @@
websiteURL = "https://t.me/revanced_apkss" websiteURL = "https://t.me/revanced_apkss"
websiteSummary = "Visit Revanced Builder Channel" websiteSummary = "Visit Revanced Builder Channel"
[website-music] ['website-music']
websiteURL = "https://t.me/revanced_apkss" websiteURL = "https://t.me/revanced_apkss"
websiteSummary = "Visit Revanced Builder Channel" websiteSummary = "Visit Revanced Builder Channel"
+8 -1
View File
@@ -64,6 +64,12 @@ class Parser(object):
except ValueError: except ValueError:
return False return False
def exclude_all_patches(self) -> None:
"""Exclude all patches to Speed up CI."""
for idx, item in enumerate(self._PATCHES):
if item == "-i":
self._PATCHES[idx] = "-e"
# noinspection IncorrectFormatting # noinspection IncorrectFormatting
def patch_app( def patch_app(
self, self,
@@ -107,7 +113,8 @@ class Parser(object):
logger.debug("Using experimental features") logger.debug("Using experimental features")
args.append("--experimental") args.append("--experimental")
args[1::2] = map(lambda i: self.config.temp_folder.joinpath(i), args[1::2]) args[1::2] = map(lambda i: self.config.temp_folder.joinpath(i), args[1::2])
if self.config.ci_test:
self.exclude_all_patches()
if self._PATCHES: if self._PATCHES:
args.extend(self._PATCHES) args.extend(self._PATCHES)
if ( if (
+1 -2
View File
@@ -2,7 +2,7 @@
from typing import Dict from typing import Dict
default_build = [ default_build = [
"ticktick", "youtube",
] ]
all_builds = [ all_builds = [
"youtube", "youtube",
@@ -21,7 +21,6 @@ all_builds = [
"windy", "windy",
"my-expenses", "my-expenses",
"backdrops", "backdrops",
"expensemanager",
] ]
possible_archs = ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"] possible_archs = ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]