NekoX/.github/workflows/debug.yml

310 lines
11 KiB
YAML
Raw Normal View History

2021-02-18 03:32:07 +01:00
name: Debug build
on:
push:
branches:
2021-02-25 05:58:04 +01:00
- dev
2021-02-18 03:32:07 +01:00
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/debug.yml'
2021-02-18 06:29:01 +01:00
pull_request:
branches:
- dev
2021-02-18 03:32:07 +01:00
jobs:
2021-02-25 05:58:04 +01:00
ffmpeg:
2021-03-05 06:38:05 +01:00
name: Native Build (FFmpeg)
2021-02-25 05:58:04 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch Status
run: git submodule status TMessagesProj/jni/ffmpeg > ffmpeg_status
- name: FFmpeg Cache
id: cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/jni/ffmpeg/build
key: ${{ hashFiles('ffmpeg_status') }}
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2
if: steps.cache.outputs.cache-hit != 'true'
- name: Install NDK
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.3.6528147" --sdk_root=${ANDROID_SDK_ROOT} &> /dev/null
echo "sdk.dir=${ANDROID_HOME}" > local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk/21.3.6528147" >> local.properties
- name: Native Build
if: steps.cache.outputs.cache-hit != 'true'
run: |
./run init libs ffmpeg
boringssl:
2021-03-05 06:38:05 +01:00
name: Native Build (BoringSSL)
2021-02-18 03:32:07 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
2021-02-25 05:58:04 +01:00
- name: Fetch Status
run: git submodule status TMessagesProj/jni/boringssl > boringssl_status
- name: BoringSSL Cache
id: cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/jni/boringssl/build
key: ${{ hashFiles('boringssl_status') }}
2021-02-18 03:32:07 +01:00
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2
2021-02-25 05:58:04 +01:00
if: steps.cache.outputs.cache-hit != 'true'
- name: Install NDK
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.3.6528147" --sdk_root=${ANDROID_SDK_ROOT} &> /dev/null
echo "sdk.dir=${ANDROID_HOME}" > local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk/21.3.6528147" >> local.properties
- name: Native Build
if: steps.cache.outputs.cache-hit != 'true'
run: |
./run init action boringssl
./run init libs boringssl
native:
2021-03-05 06:38:05 +01:00
name: Native Build (Telegram)
2021-02-25 05:58:04 +01:00
runs-on: ubuntu-latest
needs:
- ffmpeg
- boringssl
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch Status
run: |
git submodule status TMessagesProj/jni/ffmpeg > ffmpeg_status
git submodule status TMessagesProj/jni/boringssl > boringssl_status
2021-02-18 03:32:07 +01:00
- name: Native Cache
2021-02-25 05:58:04 +01:00
id: cache
uses: actions/cache@v2
2021-02-18 03:32:07 +01:00
with:
path: |
TMessagesProj/src/main/libs
2021-02-25 05:58:04 +01:00
key: ${{ hashFiles('TMessagesProj/jni/**', 'ffmpeg_status', 'boringssl_status') }}
- name: Checkout Library
if: steps.cache.outputs.cache-hit != 'true'
run: |
git submodule update --init 'TMessagesProj/jni/*'
- name: FFmpeg Cache
uses: actions/cache@v2
if: steps.cache.outputs.cache-hit != 'true'
with:
path: |
TMessagesProj/jni/ffmpeg/build
key: ${{ hashFiles('ffmpeg_status') }}
- name: BoringSSL Cache
uses: actions/cache@v2
if: steps.cache.outputs.cache-hit != 'true'
with:
path: |
TMessagesProj/jni/boringssl/build
key: ${{ hashFiles('boringssl_status') }}
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2
if: steps.cache.outputs.cache-hit != 'true'
- name: Install NDK
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.3.6528147" --sdk_root=${ANDROID_SDK_ROOT} &> /dev/null
echo "sdk.dir=${ANDROID_HOME}" > local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk/21.3.6528147" >> local.properties
- name: Fix BoringSSL
2021-02-25 11:37:11 +01:00
if: steps.cache.outputs.cache-hit != 'true'
2021-02-18 03:32:07 +01:00
run: |
2021-02-25 05:58:04 +01:00
cd TMessagesProj/jni
./patch_boringssl.sh
- name: Native Build
if: steps.cache.outputs.cache-hit != 'true'
run: |
./run libs native
v2ray:
2021-03-05 06:38:05 +01:00
name: Native Build (V2ray)
2021-02-25 05:58:04 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: V2ray Cache
id: cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/libs/libv2ray.aar
2021-03-01 09:02:36 +01:00
key: ${{ hashFiles('bin/libs/v2ray/*') }}
2021-02-25 05:58:04 +01:00
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2
if: steps.cache.outputs.cache-hit != 'true'
2021-02-18 03:32:07 +01:00
- name: Install NDK
2021-02-25 05:58:04 +01:00
if: steps.cache.outputs.cache-hit != 'true'
2021-02-18 03:32:07 +01:00
run: |
echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.3.6528147" --sdk_root=${ANDROID_SDK_ROOT} &> /dev/null
echo "sdk.dir=${ANDROID_HOME}" > local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk/21.3.6528147" >> local.properties
2021-02-25 05:58:04 +01:00
- name: Install Golang
uses: actions/setup-go@v2
if: steps.cache.outputs.cache-hit != 'true'
2021-02-18 03:32:07 +01:00
with:
2021-02-26 03:28:51 +01:00
go-version: 1.15
2021-02-18 03:32:07 +01:00
- name: Native Build
2021-02-25 05:58:04 +01:00
if: steps.cache.outputs.cache-hit != 'true'
run: ./run libs v2ray
shadowsocks:
2021-03-05 06:38:05 +01:00
name: Native Build (Shadowsocks)
2021-02-25 05:58:04 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch Status
run: git submodule status ss-rust/src/main/rust/shadowsocks-rust > shadowsocks_status
- name: Shadowsocks Cache
id: cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/libs/ss-rust-release.aar
key: ${{ hashFiles('shadowsocks_status') }}
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2
if: steps.cache.outputs.cache-hit != 'true'
- name: Install NDK
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.3.6528147" --sdk_root=${ANDROID_SDK_ROOT} &> /dev/null
echo "sdk.dir=${ANDROID_HOME}" > local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk/21.3.6528147" >> local.properties
- name: Install Rust
if: steps.cache.outputs.cache-hit != 'true'
run: ./run init action shadowsocks
- name: Native Build
if: steps.cache.outputs.cache-hit != 'true'
run: ./run libs shadowsocks
shadowsocksr:
2021-03-05 06:38:05 +01:00
name: Native Build (ShadowsocksR)
2021-02-25 05:58:04 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch Status
run: git submodule status 'ssr-libev/*' > shadowsocksr_status
- name: ShadowsocksR Cache
id: cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/libs/ssr-libev-release.aar
key: ${{ hashFiles('shadowsocksr_status') }}
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2
if: steps.cache.outputs.cache-hit != 'true'
- name: Install NDK
if: steps.cache.outputs.cache-hit != 'true'
2021-02-18 03:32:07 +01:00
run: |
2021-02-25 05:58:04 +01:00
echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.3.6528147" --sdk_root=${ANDROID_SDK_ROOT} &> /dev/null
echo "sdk.dir=${ANDROID_HOME}" > local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk/21.3.6528147" >> local.properties
- name: Native Build
if: steps.cache.outputs.cache-hit != 'true'
run: ./run libs ssr
2021-02-28 15:37:30 +01:00
build:
name: Gradle Build
2021-02-18 03:32:07 +01:00
runs-on: ubuntu-latest
2021-02-25 05:58:04 +01:00
needs:
- native
- v2ray
- shadowsocks
- shadowsocksr
2021-02-18 03:32:07 +01:00
strategy:
matrix:
flavor:
- FullRelease
- FullReleaseNoGcm
- FullAppleEmojiRelease
- FullAppleEmojiReleaseNoGcm
- MiniRelease
- MiniReleaseNoGcm
- MiniAppleEmojiRelease
- MiniAppleEmojiReleaseNoGcm
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2
2021-02-25 05:58:04 +01:00
- name: Fetch Status
run: |
git submodule status TMessagesProj/jni/ffmpeg > ffmpeg_status
git submodule status TMessagesProj/jni/boringssl > boringssl_status
git submodule status ss-rust/src/main/rust/shadowsocks-rust > shadowsocks_status
git submodule status 'ssr-libev/*' > shadowsocksr_status
2021-02-18 03:32:07 +01:00
- name: Native Cache
2021-02-25 05:58:04 +01:00
id: cache
uses: actions/cache@v2
2021-02-18 03:32:07 +01:00
with:
path: |
TMessagesProj/src/main/libs
2021-02-25 05:58:04 +01:00
key: ${{ hashFiles('TMessagesProj/jni/**', 'ffmpeg_status', 'boringssl_status') }}
- name: V2ray Cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/libs/libv2ray.aar
2021-03-01 09:02:36 +01:00
key: ${{ hashFiles('bin/libs/v2ray/*') }}
2021-02-25 05:58:04 +01:00
- name: Shadowsocks Cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/libs/ss-rust-release.aar
key: ${{ hashFiles('shadowsocks_status') }}
- name: ShadowsocksR Cache
uses: actions/cache@v2
with:
path: |
TMessagesProj/libs/ssr-libev-release.aar
key: ${{ hashFiles('shadowsocksr_status') }}
2021-03-05 05:10:37 +01:00
- name: Configure Gradle
2021-02-18 03:32:07 +01:00
run: |
sed -i -e "s/16384/6144/g" gradle.properties
2021-03-05 05:10:37 +01:00
echo "sdk.dir=${ANDROID_HOME}" >> local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk-bundle" >> local.properties
2021-02-18 03:32:07 +01:00
- name: Gradle cache
2021-02-25 05:58:04 +01:00
uses: actions/cache@v2
2021-02-18 03:32:07 +01:00
with:
path: ~/.gradle
key: gradle-${{ hashFiles('**/*.gradle') }}
- name: Debug Build
run: |
export LOCAL_PROPERTIES="${{ secrets.LOCAL_PROPERTIES }}"
export DEBUG_BUILD=true
./gradlew TMessagesProj:assemble${{ matrix.flavor }}
echo "APK_FILE=$(find TMessagesProj/build/outputs/apk -name '*arm64-v8a*.apk')" >> $GITHUB_ENV
echo "APK_FILE_ARMV7=$(find TMessagesProj/build/outputs/apk -name '*armeabi*.apk')" >> $GITHUB_ENV
echo "APK_FILE_X86=$(find TMessagesProj/build/outputs/apk -name '*x86-*.apk')" >> $GITHUB_ENV
echo "APK_FILE_X64=$(find TMessagesProj/build/outputs/apk -name '*x86_64*.apk')" >> $GITHUB_ENV
- uses: actions/upload-artifact@v2
name: Upload apk (arm64-v8a)
with:
name: NekoX-${{ matrix.flavor }}-arm64-v8a
path: ${{ env.APK_FILE }}
- uses: actions/upload-artifact@v2
name: Upload apk (armeabi-v7a)
with:
name: NekoX-${{ matrix.flavor }}-armeabi-v7a
path: ${{ env.APK_FILE_ARMV7 }}
- uses: actions/upload-artifact@v2
name: Upload apk (x86_64)
with:
name: NekoX-${{ matrix.flavor }}-x86_64
path: ${{ env.APK_FILE_X64 }}
- uses: actions/upload-artifact@v2
name: Upload apk (x86)
with:
name: NekoX-${{ matrix.flavor }}-x86
path: ${{ env.APK_FILE_X86 }}