Fix lingering statement #103
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FTL Loader Build (Android ARM64) [EXPERIMENTAL] | |
on: | |
push: | |
branches: [ "main", "stable" ] | |
pull_request: | |
branches: [ "main", "stable" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ '8.0.x' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
uses: actions/[email protected] | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install arm64 crosscompiler | |
run: sudo apt install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu | |
- name: Setup project | |
run: bash feraltweaks-bootstrap/scripts/build-crosscompile-android-arm64/setup.sh | |
- name: Compile FTL | |
run: bash feraltweaks-bootstrap/scripts/build-crosscompile-android-arm64/ftl.sh | |
- name: 'Download and compile external lib: Funchook' | |
run: bash feraltweaks-bootstrap/scripts/build-crosscompile-android-arm64/funchook.sh | |
- name: 'Download and compile external lib: CoreCLR' | |
run: bash feraltweaks-bootstrap/scripts/build-crosscompile-android-arm64/coreclr.sh | |
- name: 'Setup Windowsill' | |
run: bash feraltweaks-bootstrap/scripts/build-crosscompile-android-arm64/windowsill.sh | |
- name: Create package | |
run: bash feraltweaks-bootstrap/scripts/build-crosscompile-android-arm64/package.sh | |
- name: Publish build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: 'FeralTweaksLoader Latest (Android ARM64)' | |
path: feraltweaks-bootstrap/build/package |