WSABuilds/.github/workflows/build.yaml

180 lines
8.1 KiB
YAML
Raw Normal View History

2022-08-29 23:32:14 +02:00
name: Build MagiskOnWSA
on:
workflow_dispatch:
inputs:
arch:
description: "WSA Architecture"
required: true
default: "X86_64"
type: choice
options:
- X86_64
- AArch64
release_type:
description: "WSA Release Channel"
required: true
default: "Dev Channel"
type: choice
options:
- General Availability Channel
- Release Preview Channel
- Beta Channel
- Dev Channel
magisk_ver:
description: "Magisk Version"
required: true
default: "Stable"
type: choice
options:
- None
- Stable
- Beta
- Canary
- Debug
- Custom (URL)
magisk_url:
description: "Custom Magisk APK/ZIP URL"
required: false
type: string
gapps_var:
description: "GApps Variant"
required: true
default: "Full"
type: choice
options:
- None
- Pico
- Full
- MindTheGapps (URL)
mindthegapps_url:
description: "MindTheGapps ZIP URL"
required: false
type: string
remove_amazon:
description: "Remove Amazon AppStore"
required: false
default: true
type: boolean
offline_mode:
2022-08-30 00:16:15 +02:00
description: "Offline Mode"
2022-08-29 23:32:14 +02:00
required: false
default: false
type: boolean
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
2022-08-30 00:22:15 +02:00
- name: Checkout
uses: actions/checkout@v3
2022-08-29 23:32:14 +02:00
- name: Install Dependencies
run: |
2022-08-30 00:19:27 +02:00
cd ./scripts
2022-08-29 23:32:14 +02:00
sudo apt update && sudo apt -y install setools lzip wine winetricks patchelf e2fsprogs python3-pip aria2
python3 -m pip install requests
cp -r ../wine/.cache/* ~/.cache
winetricks msxml6
- name: Build MagiskOnWSA
run: |
DOWNLOAD_DIR=../download
DOWNLOAD_CONF_NAME=download.list
2022-08-30 00:28:23 +02:00
echo $DOWNLOAD_DIR
2022-08-29 23:32:14 +02:00
declare -A opts=( ["ARCH,X86_64"]="x64" ["ARCH,AArch64"]="arm64" ["RELEASE_TYPE,General Availability Channel"]="retail" ["RELEASE_TYPE,Release Preview Channel"]="release preview" ["RELEASE_TYPE,Beta Channel"]="insider slow" ["RELEASE_TYPE,Dev Channel"]="insider fast" ["MAGISK_VER,Stable"]="stable" ["MAGISK_VER,Beta"]="beta" ["MAGISK_VER,Canary"]="canary" ["MAGISK_VER,Debug"]="debug" ["GAPPS_VAR,None"]="none" ["GAPPS_VAR,Pico"]="pico" ["GAPPS_VAR,Full"]="full" ["GAPPS_VAR,MindTheGapps (URL)"]="MindTheGapps" ["REMOVE_AMAZON,true"]="--remove-amazon" ["REMOVE_AMAZON,false"]="" ["OFFLINE_MODE,true"]="--offline" ["OFFLINE_MODE,false"]="" )
2022-08-30 00:28:23 +02:00
echo ${opts[@]}
2022-08-29 23:32:14 +02:00
ARCH="${opts[ARCH,${{ inputs.arch }}]}"
2022-08-30 00:28:23 +02:00
echo $ARCH
2022-08-29 23:32:14 +02:00
RELEASE_TYPE="${opts[RELEASE_TYPE,${{ inputs.release_type }}]}"
2022-08-30 00:28:23 +02:00
echo $RELEASE_TYPE
2022-08-30 00:35:36 +02:00
if [ "${{inputs.magisk_ver }}" != "None" ]; then
2022-08-29 23:32:14 +02:00
ROOT_SOL="magisk"
if [ "${{ inputs.magisk_ver }}" != "Custom (URL)" ]; then
MAGISK_VER="${opts[MAGISK_VER,${{ inputs.magisk_ver }}]}"
else
echo "${{ inputs.magisk_url }}" > "$DOWNLOAD_DIR"/"$DOWNLOAD_CONF_NAME"
if ! aria2c --no-conf --log-level=info --log="$DOWNLOAD_DIR/aria2_custom_magisk_download.log" -R --allow-overwrite -d"$DOWNLOAD_DIR" -o magisk-debug.zip -i"$DOWNLOAD_DIR"/"$DOWNLOAD_CONF_NAME"; then
echo "Custom Magisk download error!"
exit 1
fi
CUSTOM_MAGISK="1"
MAGISK_VER="${opts[MAGISK_VER,Debug]}"
fi
else
ROOT_SOL="none"
MAGISK_VER="${opts[MAGISK_VER,Stable]}"
fi
2022-08-30 00:28:23 +02:00
echo $MAGISK_VER
2022-08-29 23:32:14 +02:00
if [ "$ARCH" != "arm64" ]; then
GAPPS_VAR="${opts[GAPPS_VAR,${{ inputs.gapps_var }}]}"
else
2022-08-30 00:13:07 +02:00
# TODO: keep it 11.0 since official opengapps does not support 12+ yet
# As soon as opengapps is available for 12+, we need to get the sdk/release from build.prop and download the corresponding version
2022-08-29 23:32:14 +02:00
GAPPS_VAR="pico"
fi
2022-08-30 00:28:23 +02:00
echo $GAPPS_VAR
2022-08-30 00:35:36 +02:00
if [ "${{inputs.gapps_var }}" != "None" ]; then
2022-08-29 23:32:14 +02:00
if [ "${{ inputs.gapps_var }}" != "MindTheGapps (URL)" ]; then
GAPPS_BRAND="OpenGApps"
else
echo "${{ inputs.mindthegapps_url }}" > -i"$DOWNLOAD_DIR"/"$DOWNLOAD_CONF_NAME"
if ! aria2c --no-conf --log-level=info --log="$DOWNLOAD_DIR/aria2_mindthegapps_download.log" -R --allow-overwrite -d"$DOWNLOAD_DIR" -o MindTheGapps-"$ARCH".zip -i"$DOWNLOAD_DIR"/"$DOWNLOAD_CONF_NAME"; then
echo "MindTheGapps download error!"
exit 1
fi
GAPPS_BRAND="MindTheGapps"
fi
fi
2022-08-30 00:28:23 +02:00
echo $GAPPS_BRAND
2022-08-29 23:32:14 +02:00
REMOVE_AMAZON="${opts[REMOVE_AMAZON,${{ inputs.remove_amazon }}]}"
2022-08-30 00:28:23 +02:00
echo $REMOVE_AMAZON
2022-08-29 23:32:14 +02:00
OFFLINE_MODE="${opts[OFFLINE_MODE,${{ inputs.offline_mode }}]}"
2022-08-30 00:28:23 +02:00
echo $OFFLINE_MODE
2022-08-29 23:32:14 +02:00
COMMAND_LINE=(--arch "$ARCH" --release-type "$RELEASE_TYPE" --magisk-ver "$MAGISK_VER" --gapps-brand "$GAPPS_BRAND" --gapps-variant "$GAPPS_VARIANT" "$REMOVE_AMAZON" --root-sol "$ROOT_SOL" "$COMPRESS_OUTPUT" "$OFFLINE" "$DEBUG" "$CUSTOM_MAGISK")
echo "COMMAND_LINE=${COMMAND_LINE[*]}"
./build.sh "${COMMAND_LINE[@]}"
- name: Generate Release Asset Name
run: |
2022-08-30 00:13:07 +02:00
OUTPUT_DIR=../output
cd $OUTPUT_DIR
2022-08-29 23:32:14 +02:00
magisk_ver="${{ inputs.magisk_ver }}"
gapps_var="${{ inputs.gapps_var }}"
remove_amazon="${{ inputs.remove_amazon }}"
if [[ "$magisk_ver" = "None" ]]; then
magiskVer=""
elif [[ "$magisk_ver" = "Custom (URL)" ]]; then
magiskVer="_Magisk-Custom"
else
magiskVer="_Magisk-$(curl -s https://raw.githubusercontent.com/topjohnwu/magisk-files/master/$magisk_ver.json | jq -r ".magisk.version")"
fi
if [[ "$gapps_var" = "None" ]]; then
gappsVar=""
elif [[ "$gapps_var" = "MindTheGapps (URL)" ]]; then
gappsVar="_MindTheGapps"
else
gappsVar="_${gapps_var}-OpenGApps"
fi
if [[ "$remove_amazon" == "true" ]]; then
amazon=""
else
amazon="_Amazon-AppStore"
fi
echo "release_asset_name=WSA_${{ env.WSA_VER }}$magiskVer$gappsVar$amazon_${{ inputs.arch }}" >> $GITHUB_ENV
- name: Compress Asset
run: |
2022-08-30 00:13:07 +02:00
find ./ -maxdepth 1 -type d -not -path './' -exec mv "{}" WSA \;
2022-08-29 23:32:14 +02:00
zip -qrv "${{ env.release_asset_name }}.zip" ./*
- name: Upload Asset
uses: softprops/action-gh-release@v1
with:
files: ./${{ env.release_asset_name }}.zip
tag_name: WSA