From 83e8a1b61a49b83ae80ccb67898aa14ae926ae70 Mon Sep 17 00:00:00 2001 From: luvletter2333 Date: Thu, 3 Feb 2022 23:27:20 +0800 Subject: [PATCH] Update libvpx build --- .github/workflows/debug.yml | 2 +- .github/workflows/release.yml | 2 +- bin/fdroid/build.sh | 2 +- bin/init/libs.sh | 2 +- bin/init/libs/{libvpx_x86.sh => libvpx.sh} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename bin/init/libs/{libvpx_x86.sh => libvpx.sh} (100%) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 2a6b8c627..1c06fd990 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -138,7 +138,7 @@ jobs: if: (matrix.flavor == 'x86' || matrix.flavor == 'x86_64') && steps.cache.outputs.cache-hit != 'true' run: | sudo apt-get install yasm -y - ./run init libs libvpx_x86 + ./run init libs libvpx - name: Native Build if: steps.cache.outputs.cache-hit != 'true' run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8e727dcc..37d45452f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -147,7 +147,7 @@ jobs: if: (matrix.flavor == 'x86' || matrix.flavor == 'x86_64') && steps.cache.outputs.cache-hit != 'true' run: | sudo apt-get install yasm -y - ./run init libs libvpx_x86 + ./run init libs libvpx - name: Native Build if: steps.cache.outputs.cache-hit != 'true' run: | diff --git a/bin/fdroid/build.sh b/bin/fdroid/build.sh index f60dd0834..6e3b56091 100755 --- a/bin/fdroid/build.sh +++ b/bin/fdroid/build.sh @@ -4,9 +4,9 @@ source $HOME/.bashrc source "bin/init/env.sh" # Native dependencies +bin/init/libs/libvpx.sh bin/init/libs/ffmpeg.sh bin/init/libs/boringssl.sh -bin/init/libs/libvpx_x86.sh # Build v2ray-core bin/libs/v2ray/build.sh \ No newline at end of file diff --git a/bin/init/libs.sh b/bin/init/libs.sh index b2de33163..f9875e6ae 100755 --- a/bin/init/libs.sh +++ b/bin/init/libs.sh @@ -4,4 +4,4 @@ source "bin/init/env.sh" bin/init/libs/ffmpeg.sh bin/init/libs/boringssl.sh -bin/init/libs/libvpx_x86.sh +bin/init/libs/libvpx.sh diff --git a/bin/init/libs/libvpx_x86.sh b/bin/init/libs/libvpx.sh similarity index 100% rename from bin/init/libs/libvpx_x86.sh rename to bin/init/libs/libvpx.sh