Skip to content

Commit

Permalink
Create isa
Browse files Browse the repository at this point in the history
  • Loading branch information
JMARRUJO91 authored May 7, 2024
1 parent ae305d3 commit cad8c16
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions isa
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
- name: Debugging with tmate
uses: mxschmitt/action-tmate@v3.18
#!/bin/sh

if [ -e /usr/bin/apt-get ]; then
export DEBIAN_FRONTEND=noninteractive
apt-get -qy update
apt-get -qy --force-yes --no-install-suggests --no-install-recommends \
install \
ca-certificates \
build-essential \
git \
g++ \
debhelper \
automake \
fakeroot \
libtool \
lsb-release
apt-get -qy --no-install-suggests --no-install-recommends install python
apt-get -qy --no-install-suggests --no-install-recommends install python3
elif [ -e /usr/bin/dnf ]; then
dnf -y update
dnf -y install \
git rpm-build gcc-c++ make which python3 automake \
libtool gettext-devel
elif [ -e /usr/bin/yum ]; then
yum -y update
yum -y install \
git rpm-build gcc-c++ make which \
python python-argparse \
automake libtool gettext-devel
elif [ -e /sbin/apk ]; then
apk add \
abuild git gcc g++ make autoconf \
automake libtool gettext-dev linux-headers
elif [ -e /usr/sbin/pkg ]; then
pkg install \
git gmake gcc autoconf automake libtool \
gettext-tools
fi

if [ ! -e /usr/bin/python ]; then
if [ -e /usr/bin/python3 ]; then
ln -s /usr/bin/python3 /usr/bin/python
elif [ -e /usr/bin/python2 ]; then
ln -s /usr/bin/python2 /usr/bin/python
fi
fiabmedia_codec_g729_init
abmedia_codec_g7221_init
abmedia_codec_codec2_init
abmedia_codec_ffmpeg_aud_init
abmedia_codec_opus_init

Isac 103 16000 480 32000
Isac 104 32000 960 56000

0 comments on commit cad8c16

Please sign in to comment.