We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855b141 commit 5215592Copy full SHA for 5215592
.github/workflows/build-ffmpeg-kit.yml
@@ -22,6 +22,24 @@ jobs:
22
distribution: 'temurin'
23
java-version: '17'
24
25
+ - name: Set up Android SDK
26
+ uses: android-actions/setup-android@v2
27
+
28
+ - name: Install NDK r25c
29
+ run: |
30
+ yes | $ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager "ndk;25.2.9519653"
31
32
+- name: Set ANDROID_NDK_ROOT
33
+ run: echo "ANDROID_NDK_ROOT=$ANDROID_SDK_ROOT/ndk/25.2.9519653" >> $GITHUB_ENV
34
35
+- name: Grant execute permission to android.sh
36
+ run: chmod +x ffmpeg-kit/android.sh
37
38
+- name: Build ffmpeg-kit
39
+ working-directory: ffmpeg-kit
40
41
+ bash -x ./android.sh > ../build.log 2>&1 || (cat ../build.log && exit 1)
42
43
- name: Set up Android SDK + NDK (r25c)
44
uses: android-actions/setup-android@v2
45
with:
0 commit comments