fix action build package (#120)

This commit is contained in:
Max Ivan
2025-03-06 09:53:34 +03:00
committed by GitHub
parent 67834f3e88
commit c6a9dbaa8b

View File

@@ -35,6 +35,8 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 1000 fetch-depth: 1000
- name: Set process id limit for 32-bit builds depending on aosp-libs
run: echo 65535 | sudo tee /proc/sys/kernel/pid_max
- name: Gather build summary - name: Gather build summary
id: build-info id: build-info
env: env:
@@ -224,9 +226,9 @@ jobs:
done done
if [ "$DOCKER_BUILD" == 'false' ]; then if [ "$DOCKER_BUILD" == 'false' ]; then
NDK=$ANDROID_NDK ANDROID_HOME=$ANDROID_SDK_ROOT ./build-package.sh --format pacman -I -a ${{ matrix.target_arch }} $packages NDK=$ANDROID_NDK ANDROID_HOME=$ANDROID_SDK_ROOT ./build-package.sh --format pacman -I -C -a ${{ matrix.target_arch }} $packages
elif [ -n "$packages" ]; then elif [ -n "$packages" ]; then
./scripts/run-docker.sh ./build-package.sh --format pacman -I -a ${{ matrix.target_arch }} $packages ./scripts/run-docker.sh ./build-package.sh --format pacman -I -C -a ${{ matrix.target_arch }} $packages
fi fi
- name: Generate build artifacts - name: Generate build artifacts