mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
👷 Removed some apps from CI Test
This commit is contained in:
+8
-1
@@ -64,6 +64,12 @@ class Parser(object):
|
||||
except ValueError:
|
||||
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
|
||||
def patch_app(
|
||||
self,
|
||||
@@ -107,7 +113,8 @@ class Parser(object):
|
||||
logger.debug("Using experimental features")
|
||||
args.append("--experimental")
|
||||
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:
|
||||
args.extend(self._PATCHES)
|
||||
if (
|
||||
|
||||
+1
-2
@@ -2,7 +2,7 @@
|
||||
from typing import Dict
|
||||
|
||||
default_build = [
|
||||
"ticktick",
|
||||
"youtube",
|
||||
]
|
||||
all_builds = [
|
||||
"youtube",
|
||||
@@ -21,7 +21,6 @@ all_builds = [
|
||||
"windy",
|
||||
"my-expenses",
|
||||
"backdrops",
|
||||
"expensemanager",
|
||||
]
|
||||
possible_archs = ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user