forked from AlmightyHak/extensions-source
Compare commits
42 commits
Author | SHA1 | Date | |
---|---|---|---|
837c1826ff | |||
e5e8761230 | |||
ce3522ff69 | |||
0295eaef40 | |||
c96032233f | |||
a2f7b2a077 | |||
584c2e6b53 | |||
a10e63df38 | |||
09533654d5 | |||
ec77adae21 | |||
5167cba9bf | |||
31d422a8ca | |||
2d87503f99 | |||
8ef18b236a | |||
89c957d1ec | |||
a873046b39 | |||
015eb36372 | |||
3ffb365748 | |||
67672ea590 | |||
afccef1e7d | |||
4158a18ba6 | |||
3db3d04443 | |||
8738e281d8 | |||
808ad21843 | |||
7d7aca37d8 | |||
0c2df7e6af | |||
1cfee212d7 | |||
78b864fc50 | |||
8223b8d3fa | |||
2904ce54e9 | |||
d1a72a27c6 | |||
724c661a25 | |||
0c844c9649 | |||
1b9fabf062 | |||
0fc8a33f3e | |||
627c34f404 | |||
1de715339a | |||
f789a38449 | |||
4782731860 | |||
ed7858a223 | |||
51b027fd78 | |||
ea5dd44967 |
17 changed files with 21176 additions and 8 deletions
9
.github/workflows/build_push.yml
vendored
9
.github/workflows/build_push.yml
vendored
|
@ -21,8 +21,7 @@ env:
|
|||
jobs:
|
||||
prepare:
|
||||
name: Prepare job
|
||||
runs-on: docker
|
||||
container: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
outputs:
|
||||
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }}
|
||||
steps:
|
||||
|
@ -36,7 +35,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
|
||||
|
@ -81,7 +80,7 @@ jobs:
|
|||
build_individual:
|
||||
name: Build individual modules
|
||||
needs: prepare
|
||||
runs-on: docker
|
||||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }}
|
||||
steps:
|
||||
|
@ -127,7 +126,7 @@ jobs:
|
|||
needs:
|
||||
- build_individual
|
||||
if: "github.repository == 'AlmightyHak/extensions-source'"
|
||||
runs-on: docker
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Download APK artifacts
|
||||
uses: https://github.com/actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4
|
||||
|
|
21111
SDK/NOTICE.txt
Normal file
21111
SDK/NOTICE.txt
Normal file
File diff suppressed because it is too large
Load diff
BIN
SDK/adb
Normal file
BIN
SDK/adb
Normal file
Binary file not shown.
BIN
SDK/etc1tool
Normal file
BIN
SDK/etc1tool
Normal file
Binary file not shown.
BIN
SDK/fastboot
Normal file
BIN
SDK/fastboot
Normal file
Binary file not shown.
BIN
SDK/hprof-conv
Normal file
BIN
SDK/hprof-conv
Normal file
Binary file not shown.
BIN
SDK/lib64/libc++.so
Normal file
BIN
SDK/lib64/libc++.so
Normal file
Binary file not shown.
2
SDK/licenses/android-sdk-license
Normal file
2
SDK/licenses/android-sdk-license
Normal file
|
@ -0,0 +1,2 @@
|
|||
|
||||
24333f8a63b6825ea9c5514f83c2829b004d1fee
|
BIN
SDK/make_f2fs
Normal file
BIN
SDK/make_f2fs
Normal file
Binary file not shown.
BIN
SDK/make_f2fs_casefold
Normal file
BIN
SDK/make_f2fs_casefold
Normal file
Binary file not shown.
BIN
SDK/mke2fs
Normal file
BIN
SDK/mke2fs
Normal file
Binary file not shown.
53
SDK/mke2fs.conf
Normal file
53
SDK/mke2fs.conf
Normal file
|
@ -0,0 +1,53 @@
|
|||
[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
|
||||
}
|
2
SDK/source.properties
Normal file
2
SDK/source.properties
Normal file
|
@ -0,0 +1,2 @@
|
|||
Pkg.UserSrc=false
|
||||
Pkg.Revision=36.0.0
|
BIN
SDK/sqlite3
Normal file
BIN
SDK/sqlite3
Normal file
Binary file not shown.
|
@ -18,4 +18,4 @@ allprojects {
|
|||
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
1
local.properties
Normal file
1
local.properties
Normal file
|
@ -0,0 +1 @@
|
|||
sdk.dir=/workspace/AlmightyHak/extensions-source/SDK
|
|
@ -19,8 +19,8 @@ if (System.getenv("CI") != "true") {
|
|||
} else {
|
||||
// Running in CI (GitHub Actions)
|
||||
|
||||
val chunkSize = System.getenv("CI_CHUNK_SIZE").toInt()
|
||||
val chunk = System.getenv("CI_CHUNK_NUM").toInt()
|
||||
val chunkSize = System.getenv("CI_CHUNK_SIZE")?.toIntOrNull() ?: Int.MAX_VALUE
|
||||
val chunk = System.getenv("CI_CHUNK_NUM")?.toIntOrNull() ?: 0
|
||||
|
||||
// Loads individual extensions
|
||||
File(rootDir, "src").getChunk(chunk, chunkSize)?.forEach {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue