Skip to content

Commit 79ea655

Browse files
committed
[Build/Android] remove gst pkg after download
Set version of gstreamer android release and remove it after extracting pkg. Signed-off-by: Jaeyun Jung <jy1210.jung@samsung.com>
1 parent 83f2a24 commit 79ea655

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/actions/android-build/action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ runs:
3030
java-version: 17
3131
- name: Get gstreamer-android
3232
run: |
33+
gst_android_ver=1.24.0
34+
gst_android_pkg=gstreamer-1.0-android-universal-${gst_android_ver}.tar.xz
3335
mkdir -p ~/android/gst_root_android/
3436
pushd ~/android/gst_root_android/
35-
wget https://gstreamer.freedesktop.org/data/pkg/android/1.24.0/gstreamer-1.0-android-universal-1.24.0.tar.xz
36-
tar -xf gstreamer-1.0-android-universal-1.24.0.tar.xz
37+
wget https://gstreamer.freedesktop.org/data/pkg/android/${gst_android_ver}/${gst_android_pkg}
38+
tar -xf ${gst_android_pkg}
39+
rm ${gst_android_pkg}
3740
popd
3841
shell: bash
3942
- name: Get nnstreamer

0 commit comments

Comments
 (0)