mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://redirect.github.com/actions/cache) | action | major | `v4` → `v5` | | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v5` → `v6` | | [actions/setup-python](https://redirect.github.com/actions/setup-python) | action | major | `v5` → `v6` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v5` → `v6` | --- ### Release Notes <details> <summary>actions/cache (actions/cache)</summary> ### [`v5`](https://redirect.github.com/actions/cache/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/cache/compare/v4...v5) </details> <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6`](https://redirect.github.com/actions/checkout/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/checkout/compare/v5...v6) </details> <details> <summary>actions/setup-python (actions/setup-python)</summary> ### [`v6`](https://redirect.github.com/actions/setup-python/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/setup-python/compare/v5...v6) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v6`](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/damontecres/Wholphin). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Ny4wIiwidXBkYXRlZEluVmVyIjoiNDIuOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
82 lines
2.6 KiB
YAML
82 lines
2.6 KiB
YAML
name: "Native build"
|
|
description: "Performs native builds"
|
|
inputs:
|
|
cache:
|
|
description: "Whether to use the cache or not"
|
|
required: true
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Load ffmpeg module cache
|
|
id: cache_ffmpeg_module
|
|
if: ${{ inputs.cache }}
|
|
uses: actions/cache/restore@v5
|
|
with:
|
|
path: |
|
|
app/libs
|
|
key: ${{ runner.os }}-ffmpeg-${{ hashFiles('**/libs.versions.toml', '**/scripts/ffmpeg/build_ffmpeg_decoder.sh') }}
|
|
- name: Load libmpv module cache
|
|
id: cache_libmpv_module
|
|
if: ${{ inputs.cache }}
|
|
uses: actions/cache/restore@v5
|
|
with:
|
|
path: |
|
|
app/src/main/libs
|
|
key: ${{ runner.os }}-libmpv-${{ hashFiles('**/scripts/mpv/*.sh', '**/scripts/mpv/include/*', '**/scripts/mpv/scripts/*', 'app/src/main/jni/*') }}
|
|
- name: Install dependencies
|
|
if: steps.cache_ffmpeg_module.outputs.cache-hit != 'true' || steps.cache_libmpv_module.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install jsonschema jinja2
|
|
sudo apt update
|
|
sudo apt install -y build-essential autoconf pkg-config libtool ninja-build unzip wget meson nasm
|
|
|
|
|
|
# ffmpeg
|
|
- name: Build ffmpeg decoder
|
|
id: ffmpeg-decoder
|
|
if: steps.cache_ffmpeg_module.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
cd scripts/ffmpeg
|
|
./build_ffmpeg_decoder.sh "${{ env.ANDROID_SDK_ROOT }}/ndk/${{ env.NDK_VERSION }}"
|
|
- name: Save ffmpeg module cache
|
|
id: cache_ffmpeg_module_save
|
|
uses: actions/cache/save@v5
|
|
with:
|
|
path: |
|
|
app/libs
|
|
key: ${{ steps.cache_ffmpeg_module.outputs.cache-primary-key }}
|
|
|
|
# libmpv
|
|
- name: Get libmpv dependencies
|
|
if: steps.cache_libmpv_module.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
cd scripts/mpv
|
|
./get_dependencies.sh
|
|
- name: Build libmpv dependencies
|
|
if: steps.cache_libmpv_module.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
cd scripts/mpv
|
|
./buildall.sh --clean --arch arm64 mpv
|
|
./buildall.sh mpv
|
|
cd ../..
|
|
env PREFIX32="$(realpath scripts/mpv/prefix/armv7l)" PREFIX64="$(realpath scripts/mpv/prefix/arm64)" ndk-build -C app/src/main -j
|
|
|
|
- name: Setup jniLibs
|
|
shell: bash
|
|
run: |
|
|
cd app/src/main
|
|
mkdir -p jniLibs
|
|
cp -r libs/* jniLibs
|
|
#ln -s libs jniLibs
|
|
- name: Save libmpv module cache
|
|
id: cache_libmpv_module_save
|
|
uses: actions/cache/save@v5
|
|
with:
|
|
path: |
|
|
app/src/main/libs
|
|
key: ${{ steps.cache_libmpv_module.outputs.cache-primary-key }}
|