Compare commits

..

1 commit
main ... ballz

18 changed files with 9 additions and 21176 deletions

View file

@ -21,7 +21,8 @@ env:
jobs:
prepare:
name: Prepare job
runs-on: ubuntu-22.04
runs-on: docker
container: ubuntu-latest
outputs:
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }}
steps:
@ -35,7 +36,7 @@ jobs:
run: |
set -x
projects=(src/*/*)
export CI_CHUNK_NUM=${#projects[@]}
echo "NUM_INDIVIDUAL_MODULES=${#projects[@]}" >> $GITHUB_ENV
# Temporary pause because of leak of tj-actions/changed-files
@ -80,7 +81,7 @@ jobs:
build_individual:
name: Build individual modules
needs: prepare
runs-on: ubuntu-22.04
runs-on: docker
strategy:
matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }}
steps:
@ -126,7 +127,7 @@ jobs:
needs:
- build_individual
if: "github.repository == 'AlmightyHak/extensions-source'"
runs-on: ubuntu-22.04
runs-on: docker
steps:
- name: Download APK artifacts
uses: https://github.com/actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4

File diff suppressed because it is too large Load diff

BIN
SDK/adb

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,2 +0,0 @@
24333f8a63b6825ea9c5514f83c2829b004d1fee

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,53 +0,0 @@
[defaults]
base_features = sparse_super,large_file,filetype,dir_index,ext_attr
default_mntopts = acl,user_xattr
enable_periodic_fsck = 0
blocksize = 4096
inode_size = 256
inode_ratio = 16384
reserved_ratio = 1.0
[fs_types]
ext3 = {
features = has_journal
}
ext4 = {
features = has_journal,extent,huge_file,dir_nlink,extra_isize,uninit_bg
inode_size = 256
}
ext4dev = {
features = has_journal,extent,huge_file,flex_bg,inline_data,64bit,dir_nlink,extra_isize
inode_size = 256
options = test_fs=1
}
small = {
blocksize = 1024
inode_size = 128
inode_ratio = 4096
}
floppy = {
blocksize = 1024
inode_size = 128
inode_ratio = 8192
}
big = {
inode_ratio = 32768
}
huge = {
inode_ratio = 65536
}
news = {
inode_ratio = 4096
}
largefile = {
inode_ratio = 1048576
blocksize = -1
}
largefile4 = {
inode_ratio = 4194304
blocksize = -1
}
hurd = {
blocksize = 4096
inode_size = 128
}

View file

@ -1,2 +0,0 @@
Pkg.UserSrc=false
Pkg.Revision=36.0.0

Binary file not shown.

View file

@ -1 +0,0 @@
sdk.dir=/workspace/AlmightyHak/extensions-source/SDK

View file

@ -19,8 +19,8 @@ if (System.getenv("CI") != "true") {
} else {
// Running in CI (GitHub Actions)
val chunkSize = System.getenv("CI_CHUNK_SIZE")?.toIntOrNull() ?: Int.MAX_VALUE
val chunk = System.getenv("CI_CHUNK_NUM")?.toIntOrNull() ?: 0
val chunkSize = System.getenv("CI_CHUNK_SIZE").toInt()
val chunk = System.getenv("CI_CHUNK_NUM").toInt()
// Loads individual extensions
File(rootDir, "src").getChunk(chunk, chunkSize)?.forEach {

View file

@ -399,3 +399,4 @@ class Xfani : AnimeHttpSource(), ConfigurableAnimeSource {
)
}
}